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": "d5d1618b-e8c1-487e-a776-3449ebb33123",
"ParentId": "c88d69c7-13b6-4a7e-a9b7-5270c4d05344",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"e8edaa40-7ff8-4f79-a35c-f550edad98ef",
"b0b57be3-8310-4f57-be1c-d89b46613ac2"
],
"Companies": [
"c32ee627-0212-4dad-9e59-4d30ac89f5b3",
"407657c1-fc69-4827-8053-bd438321f18f"
],
"Groups": [
"5c166316-e30f-49d3-968f-9a16f0a372e8",
"74afdfc8-1ece-4fa8-af42-8b303b8b1782"
],
"Opportunities": [
"29cc71ae-60a6-44fd-b38b-c6357495f051",
"7ae084bb-41f3-425d-84b4-3035a84f97f6"
]
}
}
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:
"9ce41c8e-519b-4c7c-a412-57d38be7737f"