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": "8467a3b6-d1fb-4085-9535-4582fac1e464",
  "ParentId": "ff521542-6327-4d56-9643-e964001fb607",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "eac20b61-7271-44e6-8815-48961674818b",
      "2c89f927-8377-46dd-988a-f31dbe160e84"
    ],
    "Companies": [
      "4da93006-693d-4a80-bb16-529bf9a9b75d",
      "92c4cac6-0c12-4ffb-bee3-eed24ca7d534"
    ],
    "Groups": [
      "9b70de56-967f-4447-95f2-f1a7f6a8f85c",
      "239a72d5-b18f-4cca-832b-8d2be700d76c"
    ],
    "Opportunities": [
      "6fe2d46c-0bed-4fcb-b799-ce9259ea05e9",
      "74ffa493-4f8f-42f4-aaf3-07cfcd3fbd03"
    ]
  }
}

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:
"60db072a-008f-4a87-8202-a98ab47cbaa3"