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": "72c184df-f25d-47df-b65f-ff6a083d451f",
"ParentId": "4638ba04-a7cb-4f47-a355-b5d9e01c97fd",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"237f6d2c-c19b-4d1b-858f-4e6f96d93c9b",
"38ad3154-f885-4ce9-82d7-b5e5a535a31a"
],
"Companies": [
"9c4f6ea5-e5c1-4b9c-b1f0-03c08a5256de",
"65656640-6a32-400b-bcfc-9d012f71cf02"
],
"Groups": [
"03e22840-c9c1-47c4-a6da-2100c5b27862",
"fa032b78-1cf3-48f9-b86e-1aed756cb3e7"
],
"Opportunities": [
"88fdd680-5c90-443e-a590-f52228c00324",
"0ead73fe-007c-484c-a047-408e894931b7"
]
}
}
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:
"52ee73a4-4920-4430-8b3a-785489d74ac8"