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": "fe8eff05-38f4-4d03-93bc-fe85e1827ef8",
  "ParentId": "1dddc321-2351-44a7-a65d-42f3a08ae727",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "d1210141-f81e-4432-b32a-38fb8ef050ba",
      "81fdefdb-cf4f-47e8-9533-fc99219454c6"
    ],
    "Companies": [
      "9a332fc5-eebf-415a-8566-343e720fb407",
      "4d4e2ec5-5385-4905-b7bb-0b141ea07de3"
    ],
    "Groups": [
      "ed4cb078-c5a0-4166-bdf3-32c825c1136a",
      "ee7faacf-17b3-402c-8295-c8f64d1d92cc"
    ],
    "Opportunities": [
      "96a04605-4996-49cd-9adc-4097ad6d4151",
      "d2946109-111b-48cb-9caf-b6d42142178d"
    ]
  }
}

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:
"3eb5243b-d082-47b8-8d04-6629374cc398"