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": "dc43b56d-27a9-4a1c-acfe-473e9dbc7476",
"ParentId": "499f50b8-17c8-451c-8e38-c672ddeb4672",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"50b0f51f-145e-4fee-9fe6-6bfc9305a967",
"2515a00a-4436-4aa6-ba3b-b31d8e990e82"
],
"Companies": [
"235c851c-5756-40df-95a6-7efa71c210e7",
"cb6e7495-d420-4b9d-aa88-93e8807a4466"
],
"Groups": [
"35d4f198-d37a-4249-96d6-76a9a0c1c3c3",
"178b6380-88aa-4338-8fd2-49826a5ce1ee"
],
"Opportunities": [
"eedd6cd5-f0f3-4f47-9b54-c6bcebf74500",
"8d923773-174f-468f-90b8-41c45b544fbb"
]
}
}
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:
"4449dbbc-6edf-4d09-b717-456d52f89335"