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": "4c92b43d-f91a-4407-8812-684de28faa4b",
  "ParentId": "6021df1a-9bdc-44f5-873c-6b021aff01ff",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "e698deb7-a0f0-46a9-8ac3-696616387a64",
      "9ebe1d6d-08b9-4daf-8528-35f6618735b0"
    ],
    "Companies": [
      "7927c086-66eb-46c7-ac9f-72dcc3e12465",
      "5dc989f7-8a0e-498e-9c7c-b7686ff127ca"
    ],
    "Groups": [
      "ab884155-9dd6-4f81-aeec-ecdcc19bdb71",
      "e02977cf-86c2-400a-ba6d-b0f4358d0773"
    ],
    "Opportunities": [
      "3833f429-2cce-4917-8cd3-1e24aa586163",
      "a7de8a63-2292-4481-8897-4ddd6e2fc1e9"
    ]
  }
}

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:
"57ccbf7d-94de-4841-897f-6b9e2709b6f9"