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": "1f3c9783-6999-4891-adbb-f8779159108a",
  "ParentId": "8674f27a-5e52-4506-a02c-f6d2e16361f8",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "2498f2a2-6dbe-4b02-bed3-add05f6f9b71",
      "5d8d45fc-b33e-490b-80a9-e95bdc1e162c"
    ],
    "Companies": [
      "41ca551e-6e0d-414e-8c1e-f74af7eb5f68",
      "70e3b04f-44df-4722-8010-04e3146055ea"
    ],
    "Groups": [
      "b0c06d8e-3362-4546-ba8c-1ceb2146f231",
      "3379c4a0-c891-4baa-9236-c1acf2292ed0"
    ],
    "Opportunities": [
      "ed2b8aa7-9acf-4cbf-ae52-1c61cad9fb4a",
      "f8ca1cd5-7900-42bb-9d8c-973c4b94bbf9"
    ]
  }
}

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:
"a8f41926-f677-4941-bbbf-97348aaf3891"