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": "a6719d74-9d2e-4e5b-b2c1-486bf2c0a32a",
  "ParentId": "05814796-f486-48ee-a83e-52cf8746cc55",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "d5d84e40-f198-47b2-8aea-a263cf586ea5",
      "0e1fed94-37a7-467d-bad2-d2a141caf6c5"
    ],
    "Companies": [
      "c49be8ba-e979-48da-a8bb-e5b8954f3667",
      "a1c131b3-e251-43e3-94de-38f65f7ad66e"
    ],
    "Groups": [
      "5f31b823-6042-489c-a7a2-06a4cba7ca1f",
      "e1b50bc0-30ee-48ec-940a-c5b16777874b"
    ],
    "Opportunities": [
      "4cc11e45-d228-4e30-8484-bd145c96480c",
      "6d6cf0ec-c7fb-4434-91e3-abad5c1669e4"
    ]
  }
}

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:
"99859d0e-14c5-4788-8b6d-a22e418f862a"