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": "4601ede1-3860-4411-925e-f46408632dcc",
  "ParentId": "16a9a727-588e-4184-b93a-1d60b9a5db34",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "3da79d91-c37b-487b-8b29-c5f56e9c160c",
      "9a9bdadc-d3f2-47cc-9399-9525932c9e51"
    ],
    "Companies": [
      "09fb6a59-072e-4e51-8fb2-9eddc5de93b7",
      "4d2fc23f-5cd7-4740-822b-50a33616fa4b"
    ],
    "Groups": [
      "778e7270-c98e-4e30-897c-b04b05af739e",
      "6f164fb2-137a-468e-81c8-7ec9b823f3cd"
    ],
    "Opportunities": [
      "d613a72a-d5cd-454e-9fde-61fe13af5fe0",
      "c3f0b689-cfe1-485c-bca6-29a6437eba99"
    ]
  }
}

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:
"524137b8-4c6a-44d9-8d71-679d4f99791c"