cURL
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>" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Lightweight response model for polling approval status.
Was this page helpful?