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": "63fe8c75-ea1b-484f-86a1-754a1caec13d",
  "ParentId": "ef6e1187-0050-4eb9-bed9-d5fa913bc136",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "de978db7-259a-4886-b45d-ba5a2697f02b",
      "9fb76c40-5aa7-459d-8ee1-e2c98fc797a0"
    ],
    "Companies": [
      "d39b2e72-8086-4449-a0a4-3d2b8f9f38bb",
      "50fcd6bb-48e8-4613-85db-90fae9a3f297"
    ],
    "Groups": [
      "4b15dfc5-60d5-431e-895d-5cc83c78da21",
      "721e5383-a9b3-4195-a809-9717c68e93e5"
    ],
    "Opportunities": [
      "e746523b-2b01-461e-ba3c-e6ced4ea49c8",
      "73b2732c-9964-4517-bc16-427eaf8c7835"
    ]
  }
}

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:
"83cd2ab7-e136-436d-9aef-a53e9e47e4a5"