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": "c3de3c6f-b980-4450-a4e2-04ddd0b4a2c8",
"ParentId": "3c8317d2-d925-408e-81b5-cffabfd379e8",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"51836c5b-cd6c-4d85-8897-d79498506ed6",
"a3b8bcdd-a0f7-4220-86e2-54737ef1925b"
],
"Companies": [
"4b6f6528-248c-47bd-85e0-1fc373bb932e",
"ec56b22c-3f9c-4218-bca0-15eba13bb194"
],
"Groups": [
"dc2e9a21-4970-4a4d-a93f-411db0961a05",
"88e25925-46f4-4fde-8e3e-4a63e320ba24"
],
"Opportunities": [
"b9e5ca27-83e3-4e5a-9b9a-b4ae3c708686",
"e948680a-4f04-445f-93d3-9b1377ab698d"
]
}
}
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:
"abf56aa1-619c-4b19-bfb4-fabd7b8085b9"