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": "29c85b71-82c0-4546-b77c-3a5bc1771d4d",
"ParentId": "7e299e4d-5cf8-46bc-bac0-765aa6fb1113",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e2aa50e1-694d-40f9-a3af-ee4bf5012244",
"240ac009-03b1-43b1-8234-385fdee2a3bc"
],
"Companies": [
"b825a9e6-a65c-4565-92a0-ebd3032c528a",
"e0533cac-ec1e-437f-9296-6a6dabe57023"
],
"Groups": [
"a0af5346-fc91-48ef-b1f8-b4ccae264927",
"cb90f134-d44e-4d2b-a5ad-3a55081847e8"
],
"Opportunities": [
"16fdc9bf-19ce-4c8b-99a6-68ceebab68ba",
"8d064b87-04a5-47a1-a674-b0b26354afd8"
]
}
}
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:
"7f77c4ba-793c-4124-8557-d41f07bf8c03"