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": "c112f455-b8f3-442e-9d8f-73c792c7ea0c",
"ParentId": "9f50b9ee-2eba-42a2-a8a1-cf9f2026ad05",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"440e1741-b64a-4acf-b143-74a172ed0190",
"692298be-55a8-47e9-b695-6dd7f20df7f5"
],
"Companies": [
"6b9ef732-8fb8-45a5-8b86-26d263bbe454",
"1c13e2b6-f35a-4d8c-871d-730cd0badf62"
],
"Groups": [
"25d9db6a-e3bd-4df7-b04f-97527aee1b1c",
"663dd429-186c-4796-8780-83949fa7eba9"
],
"Opportunities": [
"ee9e08ed-13d0-4de7-a995-d873bd64d6d9",
"095faaaa-8db4-40b3-9721-053e65637ffb"
]
}
}
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:
"02f9109b-18a6-4dcf-9705-cc2720371edd"