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": "8370fe6e-f29d-4d09-b2e2-0ba756485c90",
"ParentId": "af66ccb5-20ad-4c0b-b095-6e6e80ed9233",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a3721be0-af03-4a88-b132-bd68fc95b7c1",
"fe44eb45-4416-4bb4-baac-32306d8963bd"
],
"Companies": [
"45a92fc8-faa1-46a0-9683-88447b89370a",
"84421666-906f-46b6-a897-e90377fbb540"
],
"Groups": [
"aab69258-ae68-44fc-8e8c-43eedca41e1e",
"182daa5a-2855-4d1a-a54b-daa5c2a49dae"
],
"Opportunities": [
"fb8655f5-8d22-42ba-a712-a9f397f5fbee",
"12f5e60f-2f66-4c00-98c4-450a188deb78"
]
}
}
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:
"c3bc1366-89bb-4440-b8fc-a8d1d8834f43"