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": "3d8e0e2e-94d4-48c8-b713-8253cc1a4bc3",
  "ParentId": "98867fed-b00b-47a6-bb41-0bf760bd498d",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "0788fa6e-1544-46d1-827f-132ddb65324f",
      "aa585b85-c25a-400f-b3ec-285400270372"
    ],
    "Companies": [
      "70322626-9f79-45cc-9c56-8de55019fc7f",
      "b9c889a2-d631-4db8-b289-6f6d0c972426"
    ],
    "Groups": [
      "87159808-f422-4abd-8cf7-f560ccd53ff7",
      "8786d9f8-4b56-4c3a-946b-0a494a23ef76"
    ],
    "Opportunities": [
      "dda662b5-046f-438a-af70-454bb5900d85",
      "3678534f-9b74-4789-b080-f229a463fb8c"
    ]
  }
}

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:
"e0b4dd52-f231-41a6-8e67-9589c2647871"