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": "cb6e113c-fb64-49d3-a472-d2a4521a3c2d",
  "ParentId": "de900f9a-767c-40ec-af9c-332ae6d555af",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "9a12ebaf-192b-439c-934b-180f591fc8f6",
      "833a3764-dc52-462e-bce7-d660d075fe0f"
    ],
    "Companies": [
      "39d3c651-1503-4eb0-9ec6-3a1e1566a478",
      "3f713609-9b4e-4a91-8ce5-57bdb9a4ee46"
    ],
    "Groups": [
      "69d1a00c-3ca3-41c9-a8d7-3259188ad346",
      "ef01be3a-3ebf-42a1-b404-f014c322fc12"
    ],
    "Opportunities": [
      "09accb06-6346-4012-bae4-b874178a7d55",
      "41cf0fb7-31c6-426b-a7fb-d2533eb23fd3"
    ]
  }
}

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:
"5d6e7c9c-9981-4493-a302-074645a814ce"