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": "ad75a881-1be1-4f0d-bff3-4e2f35b45460",
"ParentId": "011b78d6-4d60-473d-84ec-6e5f471ff508",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"dbc6087b-f836-4a57-b69c-c8dacbeb1838",
"0a66e265-4cda-4809-9306-780dcf0fcac8"
],
"Companies": [
"75007922-3b13-46a6-b2e1-615fe1f411f9",
"326a91b3-6d6d-4dc0-ae8f-187a098d830f"
],
"Groups": [
"8fa33eec-8c8f-42c1-a3ee-7d7a4d772777",
"a58ce5e4-b858-40d8-a2ad-f44483087884"
],
"Opportunities": [
"cfd7c983-0d3a-4d9e-8ee9-3284d4cbfb94",
"487cd6cc-d8bf-4d85-a235-38994db03e9b"
]
}
}
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:
"72ad14b2-a00a-4bdd-aed0-a9e231ed411a"