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": "71024851-fd51-40ac-8211-edb78396989a",
"ParentId": "0b09d937-44cf-4fa6-a926-f0f1e33e4076",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"abbe9218-7ee4-4e1c-9d42-0800569cc250",
"098bb5ec-9cdb-45ab-8f86-2bf0343a86e8"
],
"Companies": [
"92c4f50c-5807-44dc-a544-d3dbb348c8de",
"0ab85f40-9423-4f13-9c1f-113812ca85fb"
],
"Groups": [
"49a0d276-ff5e-4072-92e7-2db235d4be00",
"ec8d4b44-b44b-458d-b116-80ff01adf00a"
],
"Opportunities": [
"7e663913-da7d-4a97-8e48-189748d283df",
"b2f0e6a4-4d24-498e-ab2d-e6f788740b6e"
]
}
}
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:
"7859a95d-c036-427e-a757-2cd69fe70ec9"