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": "d99eca91-3765-47e1-a4a9-f95eb5f8b4bb",
"ParentId": "972d3139-31fa-4ef9-a021-5e9e556e04a2",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"8b5f5a26-2f6a-4b4a-b16b-3ded0d4dcfe5",
"57d888af-e849-4f2b-a68b-954d730648b4"
],
"Companies": [
"da2afcca-f9ce-45f9-b2b9-ed0ad1f38441",
"13e2c595-324f-4237-872a-ee55357cfc7f"
],
"Groups": [
"f1bc885f-df8b-4c88-90a8-c08df60b232d",
"032a5bdb-355e-47fe-a779-431bbaebe791"
],
"Opportunities": [
"bd173eb6-0cdc-4ca1-acdb-a7615aae9888",
"f93531df-2885-4809-b42c-b9c52553eaf3"
]
}
}
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:
"6c56f2d1-8d3d-4173-a208-1ecc45ff8e92"