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": "be36d427-64d6-4f32-96a4-c67660266810",
"ParentId": "f8b4925f-6674-4467-aa93-9a65899ff7e1",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"98665300-cf4f-4291-8729-96e39b8392b9",
"1655ce5e-9dc1-43a6-9745-fb5c36298923"
],
"Companies": [
"954dd2f1-c8da-4a79-ba22-b75591014d32",
"4bfb8962-ef0f-44af-8a43-395e3b8651ad"
],
"Groups": [
"ba4663db-291e-461f-b093-cf15208087f2",
"b7fea326-e1a2-40fd-afb4-0d2d75a2c4f4"
],
"Opportunities": [
"23508778-153a-42ea-b2df-4bef70453934",
"8f77148a-1164-43e8-8223-dba2cc867d35"
]
}
}
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:
"f1bdb957-c204-4cf1-b294-f1d16ba2390e"