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": "c543d0da-11df-4b13-8c00-4d89c65732c5",
"ParentId": "d022c41a-a473-4e43-8afa-b5f7ad6e1d53",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"52dc1c5f-e8fc-4862-8919-f1d127512438",
"017a29e2-8758-4413-a67c-61c5065b860f"
],
"Companies": [
"060a1f62-ce0f-479b-82b9-0f2a20d5716a",
"8e221872-c7e0-48f0-879e-4b3565783ce8"
],
"Groups": [
"e63e0f0c-23c4-4ee8-b907-7817d2a944c7",
"4da95ed3-aa37-4ec7-9b03-65c5863be8ed"
],
"Opportunities": [
"2574336b-fd56-4b56-a16d-05dea81d4ab8",
"3805cb08-95de-4f71-b899-4b545a5303bc"
]
}
}
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:
"fac216a8-6443-4ea9-a5fa-c949ec02d919"