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| Name | Description | Type | Additional 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": "f992f88e-bc02-4942-86f2-3f7f2ee7459d",
"ParentId": "090b8fb5-82d5-4423-a08e-40fbc45c10ca",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"df82f78a-e032-43e8-a5d7-06084af2bdf9",
"cab57967-0aba-4105-b646-2f4f30ed9aa5"
],
"Companies": [
"adb487f6-3001-48c9-a129-7bef6beebc02",
"5a27edc5-042b-450d-a846-abef36aee9b6"
],
"Groups": [
"61b88ab9-d76d-471d-a3af-769296b321cd",
"7c32da07-2dbe-4cdf-8021-7eb7c39de1e1"
],
"Opportunities": [
"fa5a22da-e709-4831-bba5-4880cb17873e",
"0e7860be-1d04-4565-976d-64a9d8436c63"
]
}
}
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 identifierResponse Formats
application/json, text/json
Sample:
"cabc5d98-c3bf-4a01-99cd-265f1a12ae49"