Delete Approval Group
Use this API to delete a specified approval group. Before deletion, make sure the approval group is no longer needed by the resources that depend on it.
Request URL: /openapi/v1/approval/group/delete
Request Method: POST
Request Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
| id | Long | Yes | Approval group ID. Obtain it by calling List Approval Groups. | 30044 |
Request Example
{
"id": 30044
}
Response Parameters
| Parameter | Type | Description | Example |
|---|---|---|---|
| success | Boolean | Whether the request is successful. | true |
| requestId | String | Request ID for troubleshooting and tracing. | In3b6XAL-hnnouTJnnlgg3SCdjni2NGK |
| data | String | Execution result. | success |
| errorCode | String | Error code returned when the call fails. | None |
| message | String | Error message returned when the call fails. | None |
Successful Invocation Example
{
"success": true,
"requestId": "In3b6XAL-hnnouTJnnlgg3SCdjni2NGK",
"data": "success"
}
Result
A successful response returns success in data, which means the approval group deletion request was accepted. If your automation manages resource bindings, query the approval group list afterward to confirm that the deleted group is no longer available.