curl --request POST \
--url https://production.hifibridge.com/v2/transfer-approvals/{approvalId}/approve \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"comment": "Approved after reviewing transaction details"
}
'{
"success": true,
"message": "Transfer approved and initiated successfully",
"approvalId": "approval-123-e89b-12d3-a456-426614174002",
"status": "APPROVED",
"timestamp": "2024-01-15T11:00:00.000Z"
}Approve a pending transfer. If enough approvals are received, the transfer will be queued for execution.
curl --request POST \
--url https://production.hifibridge.com/v2/transfer-approvals/{approvalId}/approve \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"comment": "Approved after reviewing transaction details"
}
'{
"success": true,
"message": "Transfer approved and initiated successfully",
"approvalId": "approval-123-e89b-12d3-a456-426614174002",
"status": "APPROVED",
"timestamp": "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
Request body for approving a transfer
Optional comment explaining the approval decision
1000"Approved after reviewing transaction details"
Transfer approval recorded successfully
Whether the operation was successful
true
Human-readable message about the operation
"Transfer approved and initiated successfully"
ID of the approval being processed
"approval-123-e89b-12d3-a456-426614174002"
Current status after approval
APPROVED "APPROVED"
When the approval was processed
"2024-01-15T11:00:00.000Z"