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": "b43cadf4-ddbb-4199-b209-2545d5cf8753",
  "ParentId": "5426cd74-6619-449b-8fe7-7b8f55f3d6ff",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "8598eda5-3041-4e60-9ebc-2d6aade79dc7",
      "711043cb-4df7-4082-9608-14d5f057ee1c"
    ],
    "Companies": [
      "d11fd56c-7a0b-41cb-bc57-6e0ad25ce344",
      "ebe76889-ca34-43a2-863b-f8fb15b116a8"
    ],
    "Groups": [
      "0c647320-e551-4930-8e93-d6c1905f4545",
      "c4c1c2fe-fed1-4615-aeb5-321963cec29d"
    ],
    "Opportunities": [
      "f168b48b-f073-43b3-949f-49cd5a0212d8",
      "6c84c8fe-1269-48b3-84af-8cb614258be4"
    ]
  }
}

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:
"ba5d2e02-505f-4551-9043-087e0d85bf82"