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": "3e1798a6-acad-4665-b059-51ee5a124729",
"ParentId": "f7f43fab-0fcf-422c-b39d-b21a31e47b29",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"893fb4c8-ccf8-4dd7-8e13-bfe507a1e65f",
"dcfb1834-b7c3-479e-a073-a71ab098cb43"
],
"Companies": [
"f62c907f-6efb-49c3-b0d7-8fcbdf5148bb",
"4ab51f05-276b-4a18-a378-fd3c17cc6701"
],
"Groups": [
"b506ad2e-b8c9-4c82-8463-d270257b95f1",
"3b731d57-3de8-4319-ad43-fd2d9e82267b"
],
"Opportunities": [
"eba7845e-d2e1-424f-aabc-bb2818d4220f",
"7b5055fc-0d9c-46d3-8687-b7d274339e57"
]
}
}
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:
"7308acd3-8d03-4360-bd3c-8623ac5e3442"