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": "954b7ba2-61c8-449a-bcff-3e1a3263c540",
  "ParentId": "2a597909-0584-45c1-9fce-63adaf60e1bc",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "4131fe82-c457-4cae-9473-3b21fe722bb0",
      "3a57bef6-2a3f-493b-b7fa-d352f5ba5c40"
    ],
    "Companies": [
      "64413c90-2bdc-46b8-aa35-cd38e264dafb",
      "9e1e8834-03ad-4583-9e93-5fd57fd0b8be"
    ],
    "Groups": [
      "7535a70d-0e98-480e-8d33-73037c680fcf",
      "6fb721c5-fd7d-43b9-bbd8-5a84496e2c33"
    ],
    "Opportunities": [
      "00dba087-4ba3-49d5-9e80-647f6eaf45e6",
      "a2b2f38d-0899-4793-817d-5652054abdb5"
    ]
  }
}

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:
"8134431b-6456-42f4-b2a3-5166aaa19d51"