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": "f062318a-d13f-4930-99bd-680d30d5b52a",
  "ParentId": "9cc72803-b436-4d3a-99ee-6f3f4295977b",
  "Fields": {
    "sample string 1": {},
    "sample string 3": {}
  },
  "LinkedEntities": {
    "Contacts": [
      "da9b0608-55c1-40dd-9213-777f17aafc23",
      "454a6d5c-e4eb-448e-94e5-8fcecaa6e874"
    ],
    "Companies": [
      "dc09ee20-5b7b-4fad-aa75-28a1fe2c2e8b",
      "116721e4-d9ec-4d97-a7c6-a06c25b7d0c5"
    ],
    "Groups": [
      "bce9b547-062e-4904-9b60-819495eb46ef",
      "6a865f7e-b97b-4938-9a98-d2ceddfc9160"
    ],
    "Opportunities": [
      "5292bdcd-262b-4d5d-a6a8-fb8417ec0cf9",
      "0d1ab553-f19a-4de8-99f3-5da5f6715271"
    ]
  }
}

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:
"e8cd2097-5005-4ddd-8026-7cc10a6f5757"