POST api/Groups

Create a new Group Record.

Request Information

URI Parameters

None.

Body Parameters

The Group record data must be passed in through the body of the request in Json format. Set Content-Type header to application/json

MutableEntityExtended
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

ParentId

This field will only include data when working with Group records.

globally unique identifier

None.

Fields

Dictionary of string [key] and Object [value]

None.

LinkedEntities

LinkedEntities

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": "85eca681-5d98-4c2d-9f56-57ea41a7921f",
  "ParentId": "9cff9ecd-1b48-458c-b751-5fde35849ce8",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "5aa38e3b-aafe-4de8-a790-46e4b73c47cc",
      "6de476ba-4c58-48a3-a0f2-93099c9d9f65"
    ],
    "Companies": [
      "854212e0-00ad-4b07-a008-70e1565994f6",
      "2aabeb75-105b-40ef-84df-701f72f13479"
    ],
    "Groups": [
      "ab497875-05e1-48a6-8222-cb647ad134d9",
      "6c5c5630-f6f9-457a-9853-a99834b28461"
    ],
    "Opportunities": [
      "254a9fca-1bca-46ad-9816-071ea034ea2b",
      "253fa457-528e-4fd6-ab96-e3286347c277"
    ]
  }
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

This endpoint returns the GUID of the Group record once it is created.

globally unique identifier

Response Formats

application/json, text/json

Sample:
"a45407e9-9d0c-4e83-be63-91f74818f26c"