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": "7a8c46dc-b612-4a02-bff2-9a5d42743365",
  "ParentId": "874cf5e1-1bc3-49e7-b2fc-62413893026a",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "83e4b787-c94f-4931-90a1-6ea7c27cb3b1",
      "3cdcc9e2-80c2-4cb1-ba37-be5c152b61e9"
    ],
    "Companies": [
      "36d796e6-4bc5-4455-abaf-eeff1d47448b",
      "51a5e6c8-182b-4c96-9098-d6e0f212d194"
    ],
    "Groups": [
      "cfe77e1f-ecbf-47e1-9c40-4594f5672b74",
      "0d52d51c-e929-4d59-8dde-cd6ed1e650fb"
    ],
    "Opportunities": [
      "a91d25d1-731d-45ad-a03e-4b9714129588",
      "a2a421b1-3e85-46a7-8939-fc61372a7954"
    ]
  }
}

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:
"9a4a75ac-3704-4c52-a693-d36c95abb1a9"