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": "e9d087f2-fc6f-41a9-ad59-c5f6ea6c150b",
  "ParentId": "da134a60-d514-4f20-be24-818bba938a61",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "77b402ad-3162-4b45-be9a-848b5bafd039",
      "b55d9e14-47fb-4ce9-93a9-b62741e8e6d7"
    ],
    "Companies": [
      "3590a46e-c3bd-43ac-9cee-349ec4e43a5d",
      "8fab2313-50b6-4066-a1c5-cedb22ef8dff"
    ],
    "Groups": [
      "d88f25d2-9e15-4fc7-9d9b-0eb4eefd83d8",
      "158327f9-5458-4266-9e8f-065fb4c4b454"
    ],
    "Opportunities": [
      "9cb1e7ca-6971-4b45-8381-4976ffde83a4",
      "66ad27db-0ae7-4cfe-9452-3d548aaaeadd"
    ]
  }
}

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:
"493e2d82-e0a1-49ec-ac69-6c68652de897"