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": "b700d14a-bdcd-4ed7-9b43-b7b76e992b94",
  "ParentId": "9aba190f-482a-4817-96d0-79d27f3e9ed3",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "15c5b9e6-6f26-402f-91fc-f1dad58311ac",
      "e9352b46-16ff-4021-8f63-61904462d42c"
    ],
    "Companies": [
      "24b18df4-caee-4ed6-bb4e-c48295bb950f",
      "79a0c2a1-89db-45fa-b2c1-27ff3d57e811"
    ],
    "Groups": [
      "3d8307fb-0953-424f-acb5-c94cb36b2228",
      "6baa55fc-3d7a-472e-8ead-bb80f23b94ce"
    ],
    "Opportunities": [
      "4be19e0b-7042-42dc-8138-b4dd8664e016",
      "7539d191-54d6-4952-9447-77ab926fce5c"
    ]
  }
}

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:
"79a5ead3-1929-4cb3-9ab7-67fdc954a67a"