[POST] .../v1/targetsetting/delete
Deletes a target setting. Use this method to remove one setting from a target without deleting the target itself. It soft-deletes the setting and returns row_affected. The target must exist and be editable by the current user. Missing body, invalid id, missing setting, denied permissions, finished targets, concurrent update conflicts and storage errors are returned as HTTP 200 ErrorResult business errors.
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | Int64 | Required | Record ID. |
Request Example
{
"id": 31
}
Response Parameters
| Name | Type | Description |
|---|---|---|
| ok | Boolean | Indicates whether the request completed successfully. |
| result | Update | Update operation result. |
Response Example
{
"ok": true,
"result": {
"row_affected": 1
}
}