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": "de867ed4-77ad-4c35-9d0f-3a17da6ef82f",
  "ParentId": "21a108ae-3bca-4032-a960-f210de8a14b4",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "eed0b93d-ee40-4394-9848-2a2dc0843f39",
      "92a8ac2e-b145-4b5d-9d0f-24fa3e8e5fe3"
    ],
    "Companies": [
      "dcdaefff-debf-47d5-90ed-6255ae80ede7",
      "b76d2fec-d969-46b5-b438-78200333e17f"
    ],
    "Groups": [
      "fc5d663f-ec60-469a-9f96-cedbc24cfcf3",
      "7d6eb2a2-6418-4356-81ca-a85eb36328e7"
    ],
    "Opportunities": [
      "300cc2dc-c2e7-4ff2-81ff-a900d565d275",
      "34e5661d-2fe7-48a7-aaef-2ccded62bd7b"
    ]
  }
}

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:
"8ec1f8f6-3ecd-4a89-923c-e32267d73ae2"