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": "500c0609-87c9-4346-8a85-423d8d191c2d",
  "ParentId": "91802400-41d7-4bb1-9f92-b6bb29290a49",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "5e2f8125-51b0-417f-9f65-ed4e8c251c0d",
      "fac7b12e-7937-4459-bc85-68c8625df428"
    ],
    "Companies": [
      "67beb6a1-93c4-4e0a-8255-019a830b0f44",
      "283aef15-5253-4e06-9d96-63df0288a409"
    ],
    "Groups": [
      "88d20bcb-3700-4656-b599-2197e183850b",
      "1126196d-d1fd-42dc-9bf1-5be2640b2ac7"
    ],
    "Opportunities": [
      "8a1c0056-34a5-40d5-8e95-d098869514c2",
      "343ca732-e498-4caa-8d79-59b0b6c85eee"
    ]
  }
}

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:
"a69e145d-d173-4a66-8abc-e271b02a7c9f"