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": "1945e0dd-45bb-44b7-aa8d-6deac42d49d8",
"ParentId": "3531fed0-f6d8-4613-a759-5d64fa4cd298",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f0d274da-019d-48ea-94f7-59eff62c1281",
"9ffd0602-fc4e-4329-b7f5-cf6ff5c76812"
],
"Companies": [
"9a8b3959-7b30-4e16-9219-ba7b32dcfc8d",
"37f67b07-28bc-41be-a9a9-29a995823d1c"
],
"Groups": [
"4a0b1274-0185-43c9-a914-38ddf8aa1f40",
"a7b0c000-ac9d-44de-9e80-98b8313c2e4e"
],
"Opportunities": [
"15284b39-c030-491d-b0d3-651cab489f65",
"26245d9d-7e01-470f-9c06-92c96eb69b59"
]
}
}
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:
"b0962906-21d9-4a8c-861c-3b2880b72c62"