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": "d76d7b68-b4e6-44aa-80cb-fc3df87e6034",
  "ParentId": "423e50f9-1e4a-4f5a-abfe-509b612d04d6",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "ea5770bd-29af-4838-b092-eb99e209efc4",
      "0382803d-395c-46a2-9a73-0229c82aad3c"
    ],
    "Companies": [
      "f2ec7f4b-8853-414c-b672-8188662ca18b",
      "0f9980f4-2b0a-42ee-8638-80ab0ef882a6"
    ],
    "Groups": [
      "49595065-8912-42a1-966d-de3fb80af4f3",
      "148b379d-883e-4cfd-80cb-ee98ab79bb7d"
    ],
    "Opportunities": [
      "e932d348-5ab7-4930-a5ad-585755654299",
      "36dfd64f-1683-43fe-8f21-a06b3e227305"
    ]
  }
}

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:
"b9d77252-dd26-4fcf-a2c7-dc0d6f7384e3"