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": "a63bdde9-902d-44b6-a6f7-a4459c5f9bdd",
  "ParentId": "f3f88a86-2457-4b89-9b7e-e534ea6a7b8e",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "b05a9dbf-2229-4056-b229-0d20b00921d1",
      "b9908662-fb36-44ad-9435-b42e73af53d8"
    ],
    "Companies": [
      "6fe8708c-0bdd-451d-88b9-d9e9f321be43",
      "9d348e1b-0d25-49d4-a228-65fbe0969246"
    ],
    "Groups": [
      "53c9bda7-e69d-41be-a0c4-f961fcdba733",
      "51906e16-3550-41a4-930b-e01212650461"
    ],
    "Opportunities": [
      "7e255714-308f-4dfb-8af9-9af2d6b248a3",
      "4b63adff-5ef0-48c5-bef1-046021ae9032"
    ]
  }
}

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:
"dcc5740c-a9bc-4c15-870d-a96c31e63dbf"