Skip to main content
GET
/
api
/
v1
/
pending-operations
/
{pending_operation_id}
Get pending operation
import requests

url = "https://api.example.com/api/v1/pending-operations/{pending_operation_id}"

response = requests.get(url)

print(response.text)
{
  "result": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "owner_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "request_id": "<string>",
    "wallet_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "initiated_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "delegation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "operation_type": "transfer",
    "operation_data": {},
    "policy_decision": {},
    "status": "pending",
    "operation_token": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "approved_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "approved_at": "2023-11-07T05:31:56Z",
    "rejected_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "rejected_at": "2023-11-07T05:31:56Z",
    "expires_at": "2023-11-07T05:31:56Z",
    "execution_result": {},
    "last_error": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  },
  "success": true,
  "suggestion": "",
  "message": "",
  "meta": {
    "total": 123,
    "offset": 123,
    "limit": 123,
    "has_more": true,
    "after": "<string>",
    "before": "<string>"
  }
}

Headers

X-API-Key
string | null

Path Parameters

pending_operation_id
string<uuid>
required

The unique identifier of the pending operation to retrieve. Obtain this ID from the List pending operations operation or from the pending_operation_id field returned when a transaction enters pending_approval status.

Response

Successful Response

result
PendingOperationRead · object
required

Pending operation response payload.

success
boolean
default:true
suggestion
string
default:""
message
string
default:""
meta
PaginationMeta · object

Pagination metadata for list responses.

Supports both legacy offset-based and cursor-based pagination. Cursor fields (has_more, after, before) are populated for cursor-paginated endpoints. Legacy fields (offset, limit) are populated when the caller uses the deprecated offset parameter.