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": "2e4e637c-40fc-4ed0-b287-19945b13b87a",
  "ParentId": "28ce7128-93d9-45dd-8db7-df387aa0fbdf",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "e0318474-357a-4145-9cd8-176ed14f08e7",
      "a2333490-fb11-4eea-911e-2e7160a44dbd"
    ],
    "Companies": [
      "04da85bb-b704-4912-88ea-21b6d4e87737",
      "7d51fb2a-a2fe-4677-b351-258ff2986cd4"
    ],
    "Groups": [
      "4bc3565a-917e-4c8d-ac1a-47787a690109",
      "745ccdb0-c733-4e31-b092-81f9a235a535"
    ],
    "Opportunities": [
      "bb78af41-0056-4192-99ca-f3273c968f4b",
      "87de930e-3e3b-4d9e-af26-a275d9407f97"
    ]
  }
}

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:
"93e7d38d-6e16-43ee-b038-7dd903110b13"