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": "9493700e-ca3b-4b46-b867-6e1637f57801",
  "ParentId": "e02c32c5-833d-4b6f-8d1a-9ccc921b389d",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "0ba95107-2adc-4fc9-bd03-0189a6604ba0",
      "fc1aef2f-2a28-4eca-a54e-3ef23011b0c8"
    ],
    "Companies": [
      "2e9a3662-f3d6-4e44-9669-a99854f38941",
      "791d545f-9d71-4846-bc53-a9afac32c64a"
    ],
    "Groups": [
      "f7e98ce1-dc0f-4a44-a9cf-fa93ade41113",
      "32c578f6-7fe7-4728-98bc-b33db5287877"
    ],
    "Opportunities": [
      "9488018c-416d-4968-940a-07f2656c9004",
      "f8bbd9e3-0f8d-4d1e-9e33-b86106123aab"
    ]
  }
}

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:
"a6880828-8f63-4004-b0d8-2be0607ab4f7"