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": "a1127a58-948b-4b3e-ba4f-6a9b2930a38b",
  "ParentId": "0a7c82fc-bd2d-4c9c-97c8-2eae63fab9af",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "e48438a0-0c9d-499e-87bf-1e52542aa0f7",
      "7a5b584e-12dd-4a6c-b083-08286bf32320"
    ],
    "Companies": [
      "d7b3b76d-43fe-4379-9579-eec6b3a5cc3a",
      "40a4e88f-89e8-4b29-820d-d60b4765f89a"
    ],
    "Groups": [
      "f71f6c88-bedf-47c8-b738-ce742d67e998",
      "30dc6e98-0315-418e-88f1-1f319a4cc3fc"
    ],
    "Opportunities": [
      "3651691b-92e4-4733-9a61-be50b75747bc",
      "d4d419dc-271c-428e-9a46-3851fa974745"
    ]
  }
}

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:
"fe03f57f-d199-4d48-8ec4-b801013bf231"