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": "afde4ca4-b59a-4100-b636-74b9bb713fb7",
"ParentId": "7b492274-f55a-4b99-90d9-c354c3f24475",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8d62575f-8602-4299-b9f5-9c2b81e5bc66",
"5afe87c4-b10f-4c4e-a523-4300bad6d191"
],
"Companies": [
"d9098e22-582d-4eaa-a3cb-1360409fc346",
"fed14af1-87ff-43e5-95fb-17c64989d40f"
],
"Groups": [
"e0e77d3e-1a70-4bbd-b3cc-8ff538a4b08a",
"b349f47e-7b63-4cbd-acc7-7b97deecf0cb"
],
"Opportunities": [
"a7ce8768-8696-4f2a-a642-94a6b99d5aea",
"e1ed7e9d-e994-4fd0-b566-60e879baf168"
]
}
}
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:
"2d6aac0f-4b3e-4c90-be46-119957f48831"