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": "dc6d1086-7595-4eb9-9745-c9b70fa520f8",
"ParentId": "c1925b3d-a6a8-4a05-9295-c149a46d82ca",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"903339ce-5906-4d8d-b5ae-a47367963947",
"1a5c663f-a034-4e88-a7b7-615a674a52bc"
],
"Companies": [
"cbc48b9e-d4df-4af6-810b-550f0d0a8b02",
"ee3218f0-6e99-48a0-b04f-b3d6b61b0ed4"
],
"Groups": [
"81ef8021-b321-4cd0-b77b-71c0e7557872",
"8ebcee54-1dbb-4ff5-abef-8290e0c1dd01"
],
"Opportunities": [
"df3698ca-1586-4cc5-adbe-acce0c11b89f",
"249c5f64-5dd2-4131-9edc-fde0d5c88df2"
]
}
}
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:
"b1e95a58-00bc-4d54-8a87-5587635ac3a6"