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": "b649c2c5-289b-4796-a3f2-72cb942d52a9",
"ParentId": "b2476055-1c8e-400c-9c48-cf2ad2406ab2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"aec7f1d4-40c7-4d97-9ced-3412df05437d",
"fc900378-d63f-4349-a2ea-33c4c694f2f9"
],
"Companies": [
"88b32e55-9107-4ffe-92ee-e35356eb21c4",
"bc6d0e31-6d17-40be-a52c-1900c30e523e"
],
"Groups": [
"aacb024b-ffc8-463d-b1a3-d70a4dbe60f0",
"0f0dbb72-b6ae-4d91-9635-3b6feaae9401"
],
"Opportunities": [
"64b15591-6026-42ea-bcad-745ea968af5a",
"b6917c30-005a-4b22-8063-cf18d3ad452b"
]
}
}
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:
"65af9bb4-9e8b-4e1b-a718-eef0ad7fd86b"