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": "316ec123-209d-428e-bbd5-a9449f43f11a",
"ParentId": "d10674e6-98aa-40bf-b687-4c209db92255",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"63b42551-8be8-46a3-9ba4-ea527bbf26b2",
"f9ba7f06-8e88-42c1-8184-4c23ac294fea"
],
"Companies": [
"a85cd53a-9c9b-4bf4-ac12-8e94cbbd8167",
"5333b5a2-3d01-45f9-8ada-75b00f41e40f"
],
"Groups": [
"3e0d8790-ad0f-4001-918e-b9216ae44cb3",
"b3286b57-3e3a-4f54-952e-c30c48484de7"
],
"Opportunities": [
"c42bf5ba-9f64-4503-b344-35b39d92f7e1",
"3d37ccf1-9a7e-4464-87d6-ed2d5d0bcf86"
]
}
}
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:
"d19fd4ff-c487-467c-89b9-22dc6a738ed1"