Skip to main content
GET
/
v2
/
transfer-approvals
List all pending transfer approvals
curl --request GET \
  --url https://production.hifibridge.com/v2/transfer-approvals \
  --header 'Authorization: Bearer <token>'
{
  "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"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:20

Number of approvals to return

Required range: 1 <= x <= 100
offset
integer
default:0

Number of approvals to skip

Required range: x >= 0

Response

Transfer approvals retrieved successfully

success
boolean

Whether the operation was successful

Example:

true

message
string

Human-readable message about the operation

Example:

"Pending approvals retrieved successfully"

count
integer

Total number of pending approvals

Example:

2

approvals
object[]

Array of pending approval records

I