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": "72f346c9-cbfc-4f80-9475-35f82f2d070f",
  "ParentId": "fa7d85f8-77a3-4938-ad7a-7623e9294a29",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "f45d3bca-5361-4bc9-aaf2-278434f68467",
      "e59f2c06-d497-431c-b395-3b9638d5fa36"
    ],
    "Companies": [
      "cbfe7be6-9961-459c-a3e2-ca5dc121eb78",
      "8e520b6b-50d6-4b13-95b2-945eae470b8f"
    ],
    "Groups": [
      "d2adff47-706d-4eba-8ffc-4438f95751f7",
      "8cf7914b-4a58-4561-981d-4974af871908"
    ],
    "Opportunities": [
      "7ad6037b-f1a0-4865-b390-1329bf94c6c1",
      "3b01dcbf-3c34-491f-bede-a598718ef46f"
    ]
  }
}

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:
"9696aa06-87c1-46da-87c9-c8445924f075"