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": "6093f11c-3ca7-43fc-83b5-eaa85098ce55",
  "ParentId": "979f0a8e-c528-46aa-b512-1c7b8ce07418",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "ae4b1cf3-4d62-4ee3-b278-daf46ac42b31",
      "9197da72-2f7f-4eff-bb76-4056fde993e4"
    ],
    "Companies": [
      "cd75fe3d-dcf7-46dc-8078-562764511d45",
      "30f1bfa1-c271-4d14-872a-7c23caf78ddf"
    ],
    "Groups": [
      "e0e34851-a015-4838-b32d-576f58d89e1e",
      "dc9daa2e-8c10-4893-8eee-291ddf46d130"
    ],
    "Opportunities": [
      "de97391a-e2b7-4a20-9213-f41b0b8538db",
      "ad2c6a1e-8e56-4fb6-95bd-d9146cd642a7"
    ]
  }
}

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:
"2f1fec58-6520-4a07-9aa8-802277d3e8b0"