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": "0d52d500-8809-480c-9ca3-79de9a3da71a",
  "ParentId": "02cb5fd9-abec-47a4-84d0-38959d41f61f",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "3649d995-d2ac-440e-a0d2-de7f72303839",
      "24231902-f4b2-43b4-bcc8-628e59cf63b0"
    ],
    "Companies": [
      "8bf98261-7f47-4e69-8dd5-4293124490bb",
      "3945568b-1da2-4135-bc6e-f19a9afeac40"
    ],
    "Groups": [
      "dc9e1a10-3ead-466a-a1b8-14a9475a3b74",
      "156dbfe2-f787-4aca-afdd-63898b2401f9"
    ],
    "Opportunities": [
      "69f731e3-40c8-457c-a851-ebb2297ca507",
      "9fa26f36-9d34-4a0c-b454-37915d91cbc8"
    ]
  }
}

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:
"3ed62b05-1bbc-4b0b-88a0-656987236c94"