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": "55b9cfce-3002-4a44-8f99-11e373cd9c88",
  "ParentId": "0b4df191-a72d-4c61-8988-1beba5cda54d",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "0e50ce42-9400-4280-b752-3235c5ea12f5",
      "83cebf83-c215-447c-a88a-cec946a08e02"
    ],
    "Companies": [
      "ee252781-e78f-480f-9627-f633adbb31df",
      "b2ed5b4e-e90a-48d1-b8ad-a0443c4938f9"
    ],
    "Groups": [
      "7c724231-e480-4536-9119-2d6a652fd06c",
      "ddb748ec-28d4-4ddf-8d0d-9030e44b3754"
    ],
    "Opportunities": [
      "ec6672c1-a27b-45c9-aba4-767b4476ef41",
      "75880857-b595-456d-8600-b4056aae9e4d"
    ]
  }
}

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:
"67abac87-578b-4d04-92bb-ad91722121b8"