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": "5b3a804a-a42e-429c-b91c-4f300a1f18e8",
  "ParentId": "13c261e8-2fce-4945-984f-9e62b0766843",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "9b7a2ebf-ccc0-42d1-8d43-202e1371fef3",
      "60b0da43-c9f8-42b3-b76d-311f26a78b68"
    ],
    "Companies": [
      "c0517521-0c29-4e0a-bfb5-3ceda0174065",
      "245584a9-07fc-433d-bc70-24fa075b699d"
    ],
    "Groups": [
      "d27137c1-0234-451c-a20a-a948ad198ebe",
      "f571e928-9e47-4e5a-8845-2e71962165ce"
    ],
    "Opportunities": [
      "f468acde-37ed-41aa-8791-c70fd4b5cf2a",
      "b6d2d689-a0d2-4f18-86e6-d3fbbb422134"
    ]
  }
}

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:
"dd6e4853-86f4-43ce-a593-7c4f1fa7b42d"