PUT api/Groups/{id}
Updates an existing Group Record.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Group Id that is to be updated |
globally unique identifier |
Required |
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": "47d4932d-f6f3-4e4d-8be2-18f91bed9e5c",
"ParentId": "92b52156-4ebe-4d76-86af-76136263c973",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"7628bd73-59ff-4b4d-be34-41d252e6c0bd",
"076f4f7a-8382-4e10-b4c3-1c640bcfd083"
],
"Companies": [
"5ab0874a-c5c2-42d3-9f18-354b98fd88a2",
"9d01e13d-fbec-4af6-b7fb-e2cade15d783"
],
"Groups": [
"fc4929f0-cc26-4e48-acf3-c63732317bc9",
"b7caa9ad-54e9-4834-9007-ab7a8d6519f8"
],
"Opportunities": [
"044641ef-475a-4987-af01-b27008796133",
"2cfe4630-b779-4467-912a-377f6ec091a1"
]
}
}
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
This endpoint does not return any data when record is updated.
None.