コンテンツにスキップ

Approve a support operation action

POST
/api/admin/support-ops/actions/{actionId}/approve
Code sample: Shell / cURL
curl --request POST \
--url https://auth.example.com/api/admin/support-ops/actions/example/approve \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{}'

Directly approve a support operation action when the separate approval workflow is not bound.

actionId
required
string
Media type application/json
object
key
additional properties
Example
{}

Support operation action status.

Media type application/json
object
action_id
required
string
status
required
string
Example
{
"action_id": "sact_123",
"status": "approved"
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}