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": "70f83ff6-c25f-4935-bd25-d3ce4cacf774",
"ParentId": "26832a6d-a5f5-4071-a035-b9846384d28c",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"9a3c9b94-2021-4b66-9c66-faee126e176d",
"a0ce064a-638c-4bdd-a486-e444fa064697"
],
"Companies": [
"503c3a26-41e8-4c17-88db-df1c1c3fd044",
"49b83c11-84d8-4932-951d-08e9dbe46ba2"
],
"Groups": [
"05b105ea-f17a-4be3-a57a-0a7c4650eb98",
"5a5f64e0-cdc8-4c2c-baad-1c4307d8abc9"
],
"Opportunities": [
"7c43c6e3-f1b6-42d1-9cfe-ce07873bb375",
"0bc8551e-7f98-41ec-b806-b69320f53552"
]
}
}
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:
"67718315-4619-4d35-8724-5da0245e2ff5"