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": "24d09b3e-10c9-4757-8a2d-65306d4792c8",
  "ParentId": "3a0c3a27-28ea-4800-8fcb-d022de6d836e",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "57bc5bce-f8bb-4cd7-9217-973ca26872ad",
      "3ce2e4aa-3d96-453f-aa2b-88fa4b66449e"
    ],
    "Companies": [
      "257d89d8-66b7-475b-b02f-9dd11d6c5686",
      "fabeaf23-6331-4a74-afbe-8a2941d684c2"
    ],
    "Groups": [
      "f06bba53-c9fd-489a-906b-0c4c4f91a325",
      "d383a957-8d75-4eac-becf-750fbffa04b6"
    ],
    "Opportunities": [
      "a79d544f-a2e2-4c74-9990-0e4d044b9630",
      "0e5e3565-abf7-4f2d-b434-a1b2a0c6bd0f"
    ]
  }
}

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:
"ba44dff1-aa0c-4cb2-9b8a-6a72b93c2e61"