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": "b444350c-dc03-46a1-96f2-7aa4031df35f",
  "ParentId": "0b1fff3f-68b7-48c9-b7c3-7ea705d21f0b",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "0dc8a60f-5e62-4764-ae9e-e79c3f74150f",
      "00bc0ffe-c406-4aae-b35f-3b7092fd4968"
    ],
    "Companies": [
      "6d17b1e7-5396-4024-8a5b-c8ca2cb8007c",
      "ca8ed80c-09ae-4818-82af-245f8b86d7ab"
    ],
    "Groups": [
      "591f051c-51eb-40a8-9910-533bc2d6b34c",
      "36ae808b-8570-4e8b-86ed-36a3af7b4b12"
    ],
    "Opportunities": [
      "a35804ab-6d40-4848-9b06-12443521652f",
      "438f12b5-b36d-47dd-82fb-f15646770510"
    ]
  }
}

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:
"6a7aa481-4d36-492a-bb75-c8e85ec5f3dc"