Skip to main content
GET
/
approvals
/
{approval_id}
/
status
Get Approval Status
curl --request GET \
  --url https://api.example.com/approvals/{approval_id}/status \
  --header 'Authorization: Bearer <token>'
{
  "approval_id": "<string>",
  "status": "<string>",
  "run_id": "<string>",
  "resolved_at": 123,
  "resolved_by": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

approval_id
string
required

Response

Successful Response

Lightweight response model for polling approval status.

approval_id
string
required
status
string
required
run_id
string
required
resolved_at
integer | null
resolved_by
string | null