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": "fe4dc9ce-07d1-4b15-8b0c-fda3e9fd0578",
"ParentId": "74deb1e8-1746-4c29-9a62-9265e924455e",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e396d3c5-4917-41b5-a4a8-08df3156ffa5",
"3a19a322-8ea7-414c-b689-14b3862468ed"
],
"Companies": [
"520d6c37-204d-4e01-b46d-7dd68a8012a5",
"814dbb13-ec90-4680-a2d0-d3f8891ec9fb"
],
"Groups": [
"a4cb350b-5e02-4bd2-92f9-b2cf04fb61d8",
"e20b56a7-bfff-48f1-a3d0-bf20ffc95bae"
],
"Opportunities": [
"a0afabe0-4f03-4585-93f5-296ed2762749",
"66f6c86d-4837-46ad-a22c-11a470f84160"
]
}
}
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:
"49f6aaa4-1c59-489a-b3da-5858548fabe6"