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": "565df6e3-9e50-45bf-adc8-49ad6b07e903",
  "ParentId": "38cb79b4-1b66-4325-8023-6256be8c2707",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "e7cd64df-2fd8-44d4-bda4-ad4cedb23434",
      "5b89f8fd-631b-4f1b-bbcd-569bcfd98b6c"
    ],
    "Companies": [
      "f89658ff-8b3b-47fd-84a1-486d177df127",
      "5575e927-c785-4e5b-aac9-4105520e5985"
    ],
    "Groups": [
      "b16b95ef-329e-4fd6-8529-3cdb862e0d6e",
      "c00a1bc2-0041-4cd7-9821-725c26464de6"
    ],
    "Opportunities": [
      "632ac5c1-1b40-4821-a9d5-269d6012995b",
      "6164ff5d-6279-4b4b-babb-b5ca43d90d09"
    ]
  }
}

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:
"ca70c411-f5e3-411e-85e0-28439af95490"