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": "dca4eb96-549a-4688-9ff0-b486891589a3",
  "ParentId": "8f922196-e4f1-4036-ac2c-02092813b8ef",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "1495207b-760e-4e65-83a8-5874be5a7375",
      "b2e026d4-6141-4933-b1be-3be3a43f0323"
    ],
    "Companies": [
      "a5d3e100-4ff7-4295-84a4-32c1479add71",
      "643fb121-2515-4b2a-91d9-55b3da9599f0"
    ],
    "Groups": [
      "270f7b47-3e58-446c-a6e4-85a8f6439cb7",
      "4694bfa2-752b-41c5-9c91-f01b33f2b5e3"
    ],
    "Opportunities": [
      "d9706064-99f1-4e95-b63a-b557e1bc7cd2",
      "29df5b5e-631e-4439-9f75-19a10881c9a2"
    ]
  }
}

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:
"e2a77e28-e9d2-4208-9c14-d91a774e18d4"