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": "9054a6ad-f38e-4a97-854a-3d4fabf26a61",
"ParentId": "3666f42c-1f24-41af-be27-d47daace96e3",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"24eebdc3-8adf-407d-aefa-5bfd2d0674d6",
"538d6b2a-4069-4a1d-9f59-8143f2466a4a"
],
"Companies": [
"0b37d65e-3590-4ee8-a128-54aae4446bee",
"e2d7c495-9114-49d9-8b6f-161b25362f0c"
],
"Groups": [
"a986f81a-940c-41d1-ad8e-6c893c9c4dec",
"2032a68e-e9da-480a-a721-68c4910b3421"
],
"Opportunities": [
"fa743666-a017-479e-88b5-f11f8c7957f7",
"4d084781-4c04-44ac-929b-d4d9e70fefce"
]
}
}
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:
"3e9a7993-4631-4c59-9804-18ad87ebdbff"