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": "216ab943-06f8-4db6-84d2-b54f1f077f69",
"ParentId": "8200aa04-aed5-431b-8955-f0ee5090a7c3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"79394bc6-8452-41b0-99cd-5a7c5d168285",
"14441cde-086b-402d-ac51-3aa2b801fd71"
],
"Companies": [
"720253bd-08e8-4b04-8140-469a4a3744d1",
"7416df1d-252d-41ef-8122-fa5d7430d323"
],
"Groups": [
"c16ed650-4ca0-4151-93e7-fbe440c063e1",
"8023db3b-4fee-4d15-9f1c-f8d950c94cbb"
],
"Opportunities": [
"8c7e45c6-dcfb-4c3a-8732-75aec609b3f5",
"f7539d0b-a034-41e1-a847-780ffcea7df5"
]
}
}
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:
"3eae7e33-8b88-4380-897b-06d8b4e12bf7"