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": "709caf8f-d179-4aed-a1ad-5a9afa970e6c",
  "ParentId": "11ee8262-0ac3-4687-9b73-b3a27428e6b2",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "dac77f7d-8acf-4c86-b555-a1e38a2ea74b",
      "3dc81811-3f58-4dea-86db-6d3d670cda06"
    ],
    "Companies": [
      "4b12a513-d0dc-4b27-aed9-346b8666201a",
      "5f5cfee4-9d25-42ff-ac9a-b48f3cecee6c"
    ],
    "Groups": [
      "5f3e2329-37f6-4ac6-9e8d-8d44a91ba0d7",
      "bb8bf576-1aac-47f3-99df-8b40e168dc23"
    ],
    "Opportunities": [
      "cebfa123-1c2f-4f94-93dc-2b62de2b9f26",
      "7df967c3-08c4-4260-ae01-d723cf9b40a9"
    ]
  }
}

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:
"48dd0f63-6da1-490c-9a3a-65a2dc0e87a8"