This method returns the governance progress status for the given request ID.
The request's ID.
GET /requests/{request_id}/governance-status HTTP/1.1
Host:
X-Ledger-API-Key: YOUR_API_KEY
Accept: */*
{
"governance_steps": [
{
"approvals": [
{
"created_on": "42",
"type": "APPROVE",
"user": {
"id": 42
}
}
],
"approvers": [
{
"id": 42
}
],
"group": {
"id": 1
},
"quorum": 2,
"step_index": 1
}
],
"is_complete": false,
"request": {
"created_by": {
"id": 42
},
"created_on": "2025-06-20T12:34:26.978Z",
"current_step_index": 2,
"expired_at": "2020-12-11T12:56:35.370946+00:00",
"id": 1,
"status": "PENDING_APPROVAL",
"target_id": 42,
"target_type": "TRANSACTION",
"type": "CREATE_OPERATOR"
}
}