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": "e9bc8359-456b-406f-a77a-8860a956869c",
  "ParentId": "2ca9a5ea-1ea9-499e-93a5-1dd389c44511",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "5eff04fa-721e-4450-a956-fe2cfce01692",
      "d1e98140-72ee-418e-82bb-119d7fadaad5"
    ],
    "Companies": [
      "c0eef043-deb5-43fb-8811-dad5c5eb6574",
      "6b41b397-c282-4643-b1d9-b64e16e970af"
    ],
    "Groups": [
      "3c588556-9828-4ab2-9821-32b2a37fb424",
      "63899107-6c19-4af0-b846-f465b1bb02a3"
    ],
    "Opportunities": [
      "bf0619b2-3150-4129-8fd7-ba9a262f2a78",
      "d2e51e6c-2382-403a-8011-07e4584afdab"
    ]
  }
}

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:
"053505ed-4ccf-4095-86f2-6067363d2bde"