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": "55db8d6f-afc6-4a44-a678-46f5ec3ad93a",
  "ParentId": "87bddb72-2e22-4366-888e-05630a79b005",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "1b52e7b3-4db3-4751-8cc4-8ee45768cf28",
      "db3ab8ea-cb7a-481a-bd37-d4efca05294a"
    ],
    "Companies": [
      "adeb850b-65f9-4df5-9f4c-2e567ea954fe",
      "832e1b35-4856-4f86-8fe1-b5bd2e69c556"
    ],
    "Groups": [
      "f4a2587d-e6ff-41d7-a550-44431832964b",
      "4712fc78-29b6-4f61-9816-66d7f5cc9103"
    ],
    "Opportunities": [
      "918e1fdf-f8e3-4dc8-b6aa-d767911e17f8",
      "40d577c9-7973-4e16-b619-70cc7dfa8aec"
    ]
  }
}

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:
"d84da45a-c9d9-43a0-9aab-3b5c55a09cf9"