curl --request GET \
--url https://production.hifibridge.com/v2/transfer-approvals/{approvalId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Approval details retrieved successfully",
"approval": {
"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",
"votes": [
{
"approverId": "profile-789-e89b-12d3-a456-426614174006",
"vote": "APPROVE",
"comment": "Approved after reviewing transaction details",
"createdAt": "2024-01-15T11:00:00.000Z"
}
]
}
}Retrieve detailed information about a specific transfer approval
curl --request GET \
--url https://production.hifibridge.com/v2/transfer-approvals/{approvalId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Approval details retrieved successfully",
"approval": {
"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",
"votes": [
{
"approverId": "profile-789-e89b-12d3-a456-426614174006",
"vote": "APPROVE",
"comment": "Approved after reviewing transaction details",
"createdAt": "2024-01-15T11:00:00.000Z"
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the transfer approval
Transfer approval details retrieved successfully
Whether the operation was successful
true
Human-readable message about the operation
"Approval details retrieved successfully"
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"
Array of votes cast on this approval
Show child attributes
ID of the approver who cast the vote
"profile-789-e89b-12d3-a456-426614174006"
The vote cast by the approver
APPROVE, REJECT "APPROVE"
Optional comment explaining the vote decision
"Approved after reviewing transaction details"
When the vote was cast
"2024-01-15T11:00:00.000Z"