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": "22ed92c9-544d-4b82-bd9f-4f84a299cf81",
  "ParentId": "1b595270-ad8c-48b5-839b-f3d85205f7db",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "a30d3164-e6c0-4e94-bdbd-f40b2e83fb98",
      "0546dd8c-5023-4532-b7e7-84b7dc35ea5b"
    ],
    "Companies": [
      "5a4ab515-106a-489c-a644-dddc6debf3d5",
      "eba569ea-f857-4b0e-8614-59f26d05c1fe"
    ],
    "Groups": [
      "f8761c8c-3991-4a12-baaa-40c4455a1f60",
      "36eceb1d-6226-44cf-be27-6fd8333e11bc"
    ],
    "Opportunities": [
      "4187dac3-38ef-44ce-b01e-3ed93504cc18",
      "e8dc9def-ce3f-45b9-959e-be4ccda37f27"
    ]
  }
}

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:
"47cdafa0-5bb1-4451-8945-005ae37da860"