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": "5fc287f2-f17c-4bde-ba1b-ef2a999b099c",
"ParentId": "5b63b5dd-dbca-4670-acaf-740b337efc9a",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"6c6d2fea-971c-4a8c-b673-38fdb51c13ed",
"35d85882-2f15-498f-b251-bbdb8d21a60b"
],
"Companies": [
"55e821c9-df1b-4879-aace-ccab1636788c",
"0e32a20b-e850-4482-8edf-2ef103d0d3cb"
],
"Groups": [
"da6ac595-f946-4f6c-b42b-2d7a1ac3e2e7",
"7027f4be-d7b2-458f-89c4-60f91bd05707"
],
"Opportunities": [
"34c447a5-af4e-4b61-b63e-7c5f07f2f663",
"7493bbd4-3434-4803-8c7c-b3d9215600e1"
]
}
}
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:
"89c5cf9b-90b9-4614-a81f-440f7c7d71c0"