Execute Governance Request

POSThttps://sandbox-api.truthlocks.com/v1/governance/issuer-requests/{requestId}/executeAuth required

Executes a previously approved governance request. The request must have received all required approvals before it can be executed. Once executed, the action (suspend, revoke, reinstate) is applied to the target issuer.

Path Parameters

requestIdstringrequired

The UUID of the governance request to execute

Defaults to req_abc123

Responses

{
  "id": "req_abc123",
  "type": "SUSPEND_ISSUER",
  "target_issuer_id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "executed",
  "executed_by": "user:admin@example.com",
  "executed_at": "2026-02-18T19:30:00Z",
  "result": {
    "issuer_status": "suspended",
    "effective_at": "2026-02-18T19:30:00Z"
  }
}
POST/v1/governance/issuer-requests/{requestId}/execute
Language
CredentialsHEADER
Authorization
cURL Request
Examples ▾
curl --request POST \
  --url https://sandbox-api.truthlocks.com/v1/governance/issuer-requests/req_abc123/execute \
  --header 'accept: application/json' \
  --header 'content-type: application/json' \
  --data '{}'
Response

Click Try It! to send a real request, or view sample responses: