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": "45b0d223-14fe-4333-a053-557d1b8b432e",
"ParentId": "2b5b0cd8-8584-40e1-a744-34e76211dcde",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d03ada75-9452-4e88-9d29-09de3b2b98ff",
"f494ae39-f2a7-400e-9834-556d7217b29e"
],
"Companies": [
"87b8ca30-e87f-47ea-8749-0ce6b61ab340",
"83527474-50a6-4033-9618-71a5e4e47787"
],
"Groups": [
"22084fb0-b1b4-40b5-8ed5-76ea5eaaa435",
"f5260643-9386-49cd-93c5-4391d5994ed0"
],
"Opportunities": [
"d5f43bfd-af96-40cd-87e0-dcf3952f31ad",
"8aed6aba-ef9c-4d20-b1ce-a85a523f50ec"
]
}
}
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:
"00963cbe-b534-4a10-ab05-20d1334a8687"