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": "1c29f621-33e0-4999-8dbf-9a1be39b4d82",
  "ParentId": "ee287cc6-43e8-4baf-a3d9-3b8ccaa0a8a8",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "93d75acc-736c-47dd-a375-98ad79c4ab7f",
      "942828f6-cfbc-4fa2-a7aa-6de00cc9d14c"
    ],
    "Companies": [
      "dd098416-7ced-445c-a9f8-22016893dc9f",
      "6d98b154-08c9-46f1-83e5-f6f3b572a901"
    ],
    "Groups": [
      "193bb626-2108-4bec-ba2e-b658fe8d9461",
      "9a4d61af-abce-46be-9876-3a6e2b1bba4b"
    ],
    "Opportunities": [
      "1202dead-cd86-4d38-8f32-b5b6c9d6d35d",
      "d1072706-c8fb-45c1-9283-c7c5cb5a8c4f"
    ]
  }
}

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:
"4ad05230-de6a-4161-bd62-6a16967049c7"