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": "cfd22706-a872-494e-91a3-7159f0a67f1d",
  "ParentId": "6e5c76d0-acf6-46b8-9258-7e21101bdfbd",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "2e139b60-e052-42b5-93d9-6543aa9352d6",
      "10ae93b5-8451-473a-b194-ed1535f32c82"
    ],
    "Companies": [
      "dcdd2b8b-afb3-4976-bb87-db4cee987097",
      "9308e8e9-8480-4f0b-ae9b-23eae7c5d518"
    ],
    "Groups": [
      "b6e9f585-2abc-444d-b0a7-4a90298fd942",
      "c3ab9d7d-9c1f-4297-93f4-eeaa512e396b"
    ],
    "Opportunities": [
      "d56409e0-d665-4744-ab47-77dfa5c8df93",
      "acb81a61-2145-41f9-a582-daefa29aaea6"
    ]
  }
}

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:
"5be6469c-eff1-4a30-8475-f6036464daba"