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": "e59ce8ac-651d-4763-bb51-3a24b5ac8aa3",
"ParentId": "00134133-fa2a-49ab-8a5c-3af001da2a2d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8d298962-2a35-414b-8f37-ad759012a537",
"ec1d99bb-9fda-4e66-8d5f-6a113ec94f83"
],
"Companies": [
"b3299804-c675-4f37-820a-931538285530",
"bbe3ee3e-1aae-483c-9680-e7073f772db9"
],
"Groups": [
"449ac001-6240-467a-99e9-90135cfb7360",
"29b7e51a-430c-4f80-a464-f931bc41c528"
],
"Opportunities": [
"5f150c28-4167-4fd5-b01d-ef01269e5474",
"cc71a3e0-1612-4dd5-bdec-9e0759952798"
]
}
}
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:
"f5565c24-470a-4eb6-a77f-ed8fee044efb"