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": "25e03b40-eb20-471d-9640-dfce8ef442cb",
"ParentId": "7f84d971-0eaf-42f7-b0a8-49b2aa6124dd",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"65177af4-a3e7-4a4e-bab0-56cf059dd8fb",
"ff66c051-0398-4469-86fa-eab75bd7a372"
],
"Companies": [
"691c25e9-721f-4ce5-b8ad-35469ded6225",
"c85eda06-0bcb-492b-8b2b-b081676b7ead"
],
"Groups": [
"1374bdcf-cca6-47b4-a930-fdd97439bf9c",
"cbed2d4d-a978-489b-8ec4-16e962fcdebf"
],
"Opportunities": [
"d253ee89-8d3f-4385-8b34-98ba61f9822c",
"28cd155f-240a-4c3a-a4eb-ea1884180a36"
]
}
}
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:
"9c268381-fbdf-4d61-a275-69e33d16bd53"