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"
}
]
}Retrieve all pending transfer approvals that require admin action
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"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Number of approvals to return
1 <= x <= 100Number of approvals to skip
x >= 0Transfer approvals retrieved successfully
Whether the operation was successful
true
Human-readable message about the operation
"Pending approvals retrieved successfully"
Total number of pending approvals
2
Array of pending approval records
Show child attributes
"approval-123-e89b-12d3-a456-426614174002"
"transfer-456-e89b-12d3-a456-426614174003"
Current status of the approval process
PENDING, APPROVED, REJECTED, EXPIRED "PENDING"
"2024-01-15T10:30:00.000Z"
When the approval was last updated
"2024-01-15T11:00:00.000Z"
Type of transfer requiring approval
WALLET.TRANSFER, WALLET.TRANSFER.BATCH, WALLET.BRIDGE "WALLET.TRANSFER"