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": "d2808a58-a89d-456d-9410-8fe9fd2f3eca",
"ParentId": "902768a3-16b1-43fb-be68-04dfc098e601",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7713f25e-b7b5-4ca0-bab3-f18c49d0243b",
"895e4bed-aeb8-4906-9e29-fb5911a879d9"
],
"Companies": [
"dc2226ec-fb34-4465-8c70-95b88f3416c8",
"e11c1043-e8ea-4d3c-ae24-19906ef586c2"
],
"Groups": [
"eea9ddb8-8f71-4b13-8e4d-74c155707fa0",
"2792d98f-d032-4bcf-b7c4-01e28b958344"
],
"Opportunities": [
"da3970e0-7311-4a61-b393-855f2275c50e",
"050aa5a3-e35f-4dee-8ddf-1aef68885c53"
]
}
}
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:
"a013368d-0bf4-464d-94c0-abd24a2aa2a4"