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": "2b3e0e82-cd18-4e55-bf1b-adaa3609489e",
  "ParentId": "7403a2d2-363b-4f41-a02b-7981b2870531",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "abcfec17-f5c0-4f6f-992b-c2c41b5ea678",
      "f7453a55-3579-4205-a282-86c8cd22bc68"
    ],
    "Companies": [
      "2edb5699-bc86-49f0-a163-83d41332e4a5",
      "79e366e7-9ddd-4d88-b8a3-c0a97f5a3add"
    ],
    "Groups": [
      "a902f3a4-0e36-4175-9ba9-5b8bbc058612",
      "685f1f68-002d-4e66-a836-456fb66e59e6"
    ],
    "Opportunities": [
      "1845360f-1402-4d88-966f-246112e9c7b1",
      "4bbe7cd1-751d-41d4-a6bf-0366c90b014f"
    ]
  }
}

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:
"a1ab73ce-1ea3-40f8-8ecf-5356af028c20"