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": "95d5b831-92ba-467e-992b-0d1be25999f0",
  "ParentId": "d97650a5-482b-4b84-9c27-9c4b3559ba4a",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "c989f48d-7dd1-4f94-8e1c-b9a6bf88be22",
      "a5248461-d350-4a20-a214-ffe05de85b8d"
    ],
    "Companies": [
      "9551e339-3c02-4e5d-974c-65863ce99937",
      "3ceb1d1a-252d-445d-a3eb-2c5d06132915"
    ],
    "Groups": [
      "d87bb915-67c3-4785-8143-e14c39c27c9a",
      "3ff732eb-d054-4229-a4ef-79488c4ab043"
    ],
    "Opportunities": [
      "0b0db69c-5022-4a45-995b-3b0b015c20c2",
      "aa252014-436c-4def-8d9f-0c57842199b9"
    ]
  }
}

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:
"731cbc24-b549-4c95-bdee-88c8f2a41375"