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": "6648d34e-0b09-4c4b-8aa5-18eb1435056a",
"ParentId": "9aa1a45e-0b40-4fa8-949d-8868541d2aab",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8c77416c-1432-4a2c-adbe-b5e84f835fac",
"63ee015b-7ed9-4b1a-bcd5-6256b2837c40"
],
"Companies": [
"81dffe27-2827-4b51-b2ea-10b2cf9cb1f9",
"79e64579-5b65-4954-a600-070c066977e8"
],
"Groups": [
"daf2b421-6322-447b-b586-36642fb9a2d3",
"3bc0725d-2ec4-4d1d-9572-3ca635b4d847"
],
"Opportunities": [
"05be5dda-8325-49e7-a336-b720b8859a10",
"6251979f-330a-44bd-b57e-f3185830cd6a"
]
}
}
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:
"14cf888d-ebd5-461e-a89f-49eb5c80326e"