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": "a3eedbcc-2989-4ab8-b2fb-bbf559153d05",
"ParentId": "fb5d7ed6-e887-436c-b12e-76787812345d",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"f8bde650-c041-4582-9e45-4b2c1d58f96b",
"dae917c9-c351-430f-b147-3cd656c33192"
],
"Companies": [
"aa06554d-d144-4626-a34e-4ead06a2dd3b",
"e9593e7d-0bd2-446c-aa0a-8f8eec284f5f"
],
"Groups": [
"4911bf14-7ba3-4b81-a8f1-938970fd6499",
"3d111199-6f98-4188-8e0a-5f8e4f4f66af"
],
"Opportunities": [
"2bc663ca-1ce4-4c8c-93b9-fbb187d58baf",
"2749ae1b-7d4b-45e1-8d05-4b230ae29c6b"
]
}
}
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:
"8a0e659e-36e4-42cb-be49-1fbcec2e46b4"