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": "3bed5c80-724d-4ef7-aa95-ae800625c63d",
"ParentId": "aff5c4f4-a149-484f-bd0e-cf1161fff4d2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"d5c51f73-76d2-4582-9db9-ba9e90df9ec7",
"cbfa397f-6cbc-48e3-8524-b6005a394dd6"
],
"Companies": [
"a2fd991d-d25c-48cd-a316-b227c1fb618a",
"b22ac431-db1e-48ee-89b1-9744de24f080"
],
"Groups": [
"0ec0c30e-1d0f-4e5f-a06c-6fa2dfb9a34b",
"a476507b-70ba-4917-809b-64f9f0145e62"
],
"Opportunities": [
"c7a724fd-ae2d-4d0c-9e7c-33b1df80808a",
"85bef884-4760-4e83-b719-d668c45de4e2"
]
}
}
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:
"ed3f8a89-b575-4aaa-943c-31ac4adeaeb7"