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": "d6bfed15-b955-4087-b1f6-5d641b56fefd",
  "ParentId": "d176b47a-a3b9-4800-bc9e-1c975f0930ab",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "3cb871ee-add0-4642-9db0-505f1a08f7c2",
      "1c307384-0633-4855-bc25-64d318f13273"
    ],
    "Companies": [
      "9e143841-63b2-49db-a098-8ff4adf18898",
      "af631dc9-53a6-4969-9563-447364a73fd4"
    ],
    "Groups": [
      "c33aed39-79d3-4113-9fd9-b212bb44d9d1",
      "25b06ebf-9a3f-4af9-a644-7df5ac5dd3c6"
    ],
    "Opportunities": [
      "9db260a2-9d22-4fb8-a60d-fe3567150a59",
      "e4f82c1c-f21d-42eb-abf3-e6dd95ed63ce"
    ]
  }
}

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:
"d8fe65a2-8c37-49d0-884e-86431b2ab488"