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": "ac27753a-88a8-4941-8631-6f76a431724b",
  "ParentId": "ef587645-2354-429e-a0b6-1ce94eeddea3",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "25e01849-8d64-4dba-8241-8ff7209a7624",
      "9bfc2e3f-1fe8-4a1e-82a4-b18e1b6936c8"
    ],
    "Companies": [
      "75ab28aa-995b-4639-bb8b-b08b376bbf06",
      "d1af625e-5399-4b86-8770-917de0d8ff07"
    ],
    "Groups": [
      "036e2d79-b278-49de-aae5-74e496b480b7",
      "4fcf9e56-cc16-425e-89d4-82385b821edd"
    ],
    "Opportunities": [
      "339a47e2-2bc3-4270-9807-e00651573ebc",
      "6e4541fd-1e8e-48b2-8de0-9fd1b13b5ec6"
    ]
  }
}

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:
"b5e4f2c6-842c-4501-a72c-e8a2f5962501"