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": "dc329383-d01a-4ca0-be53-1eead17b5b29",
  "ParentId": "7a7ce18d-ef36-4f6f-aca2-a22b29c86841",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "872531aa-7f3a-470a-8deb-b6f76b18e84b",
      "e2e043ad-c5f9-49af-a7aa-cecc476d2b7e"
    ],
    "Companies": [
      "c92d30a6-9104-45b0-addd-755c3c9071d5",
      "ed597906-02b5-442a-b52d-bc5b290a49dc"
    ],
    "Groups": [
      "34fa7589-9da6-409d-92b2-d99c37f8ab44",
      "dabaf5a0-84ac-4a96-b8bd-0717c36f1859"
    ],
    "Opportunities": [
      "2523fa9c-8beb-46ac-9560-96d5f3c6fc27",
      "f5ce7f6b-0584-49c9-9c86-fd93cbdbf6ef"
    ]
  }
}

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:
"71c2699d-574a-43e2-bf46-7920c5574122"