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": "72993685-406b-47bb-8957-4537d97c9baf",
  "ParentId": "431767cf-6c64-4f46-9fd2-63d3622631e4",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "b2b0254c-898e-46c5-99e5-c201e08e89ef",
      "0d774c06-b5ef-44bc-9aac-25bebc8ed8ac"
    ],
    "Companies": [
      "af77ddb3-c760-423f-8af0-3b746d9a515f",
      "3233cc8c-e44a-4c4e-84b7-8e7426d4c555"
    ],
    "Groups": [
      "f51f7504-b184-4959-aef0-c17d58785825",
      "bdd8e551-acde-48fe-8d28-b551e2b035dd"
    ],
    "Opportunities": [
      "50e167eb-d432-4ef8-bbbe-5e514f16bf6a",
      "a11cd938-4824-42d6-87cd-8385741fe586"
    ]
  }
}

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:
"b913ba5f-43f9-4e92-83cf-4a5a88acdb6e"