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": "259ca8d8-7f29-408c-97f7-fc6b73a950cd",
  "ParentId": "a21e39fe-32f8-48ba-9941-2f38d3f656fb",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "1bf27455-5e6e-40de-9604-6726410d9cdd",
      "0f9f21c3-f590-4980-a87e-2ec6fde67272"
    ],
    "Companies": [
      "04df1000-2228-44e3-ade9-46a4a3f5d60f",
      "84c47ae5-948b-4a4d-8228-0f11fbd3effe"
    ],
    "Groups": [
      "7e71bdde-25a5-4f87-831e-19e66daeece5",
      "64349235-e04a-468e-a22e-37ba68fd1158"
    ],
    "Opportunities": [
      "ed08c32a-500e-40af-b0ef-2721bf35f6a1",
      "f107db1f-c743-4bbd-b360-1cc9a12227a0"
    ]
  }
}

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:
"d9f3bb6f-72c6-4f74-b345-b532c64886cc"