v1

latestOpenAPI 3.0.02026-07-26103425558.9 KB
Transfer Approvals

List all pending transfer approvals

Retrieve all pending transfer approvals that require admin action

get/v2/transfer-approvals

Query parameters

limitinteger

Number of approvals to return

offsetinteger

Number of approvals to skip

Response

Transfer approvals retrieved successfully

successboolean

Whether the operation was successful

messagestring

Human-readable message about the operation

countinteger

Total number of pending approvals

Example response

{
  "success": true,
  "message": "Pending approvals retrieved successfully",
  "count": 2,
  "approvals": [
    {
      "id": "approval-123-e89b-12d3-a456-426614174002",
      "transferId": "transfer-456-e89b-12d3-a456-426614174003",
      "status": "PENDING",
      "createdAt": "2024-01-15T10:30:00.000Z",
      "updatedAt": "2024-01-15T11:00:00.000Z",
      "transferType": "WALLET.TRANSFER"
    }
  ]
}