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": "517c938d-e389-4720-bb6c-ab61927dcd6a",
"ParentId": "6e1a757e-4163-4a73-9b7e-a5509ab60c0b",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"a3e9be84-f0ba-48a7-86b4-26df1db2cf1a",
"9e84c828-3beb-47ef-8f73-c77b38fd6579"
],
"Companies": [
"587a8e17-c0ad-4dbc-a515-9e4a2ff1093e",
"6f45e1a7-2356-4e88-b1bb-d4988a0c6290"
],
"Groups": [
"254462be-9a4d-410e-a33a-d3029b156b45",
"0d8c3e2c-8f77-4ee3-b18a-a390a384996f"
],
"Opportunities": [
"497fd6df-fd0b-4a34-826f-38f4ca6f7eb9",
"367f6251-a15b-477a-8064-253aa1a0ea58"
]
}
}
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:
"80aa44e3-def1-4562-ac1d-0edc02298948"