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": "55e147cb-d3c6-48cd-b815-5b2b2a2c145d",
"ParentId": "b01eca33-d211-44d6-8af3-2993fbd2cf65",
"Fields": {
"sample string 1": {},
"sample string 3": {}
},
"LinkedEntities": {
"Contacts": [
"fbb70a0d-b335-466b-bfaa-e849d664ee4e",
"a9b59e4e-8cbd-4380-99ea-079415b8859d"
],
"Companies": [
"16728664-5ed5-4dd3-addd-a94152174dcd",
"2626ac44-47d2-4d69-a75b-663ef493817f"
],
"Groups": [
"1247e360-7777-4a9d-9763-441cc9bc40f9",
"6cd51e7c-431d-4244-889c-9b515211296e"
],
"Opportunities": [
"173b72b9-88d3-43b0-9a27-471502e83f79",
"f7357894-310e-4b6b-a42b-148bc2ddc8d9"
]
}
}
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.