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": "6ea2779e-d0c3-430c-b537-e0bcd69a5e07",
  "ParentId": "018705c2-cd54-4f77-9a64-fe9ba28d1ccb",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "b5e10093-0909-4f27-978c-c15e15e1326b",
      "5f7d1511-cd3b-4036-8980-f0616e6dc05e"
    ],
    "Companies": [
      "1ad71481-5ee5-42aa-91d9-8c97c236eb6f",
      "a4fe44b9-ac64-4627-a1d8-06ea3c27ef79"
    ],
    "Groups": [
      "056230e5-de53-441a-8158-7b8805319f66",
      "d7141b5b-6457-4a29-88f2-0c567f664e8c"
    ],
    "Opportunities": [
      "52fe78b0-1b56-4dc5-bb07-e7441ba50371",
      "6d71fe89-7b83-4855-96dc-c6ffbbe94981"
    ]
  }
}

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:
"c4a05ccd-1770-4fb6-b550-a483b7f4d6d4"