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": "9d7bd6f5-f23b-4265-accb-f364b0f033ce",
  "ParentId": "91d0b531-29d7-4177-be36-ff9484322d50",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "90048a1d-d0a3-4ef4-9648-f731e6095f4b",
      "af0d5ebf-15cb-4ecb-9cc7-d99049841015"
    ],
    "Companies": [
      "2028eb8f-eb79-42c4-ba38-04d1d5dc678e",
      "79a5766c-f102-4bde-b4a8-2a21ad08334c"
    ],
    "Groups": [
      "6c407a16-0211-46a5-a4c5-3e6ec3d27837",
      "f26324d5-35e1-47dd-9b41-37a91bd9f416"
    ],
    "Opportunities": [
      "afd7b38e-630d-4792-b5bc-e39fa52d1f35",
      "b4a9a61c-7723-4f60-b7b9-5454f197307f"
    ]
  }
}

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:
"c972083d-edae-4505-adfe-6cf68f0392bd"