curl --request POST \
--url https://production.hifibridge.com/v2/transfer-approvals/{approvalId}/reject \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reason": "Transfer amount exceeds daily limit"
}
'{
"success": true,
"message": "Transfer rejected successfully",
"approvalId": "approval-123-e89b-12d3-a456-426614174002",
"status": "REJECTED",
"reason": "Transfer amount exceeds daily limit",
"timestamp": "2024-01-15T11:00:00.000Z"
}Reject a pending transfer. This will cancel the transfer and return funds to the sender.
curl --request POST \
--url https://production.hifibridge.com/v2/transfer-approvals/{approvalId}/reject \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reason": "Transfer amount exceeds daily limit"
}
'{
"success": true,
"message": "Transfer rejected successfully",
"approvalId": "approval-123-e89b-12d3-a456-426614174002",
"status": "REJECTED",
"reason": "Transfer amount exceeds daily limit",
"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 rejecting a transfer
Reason for rejecting the transfer
1000"Transfer amount exceeds daily limit"
Transfer rejected successfully
Whether the operation was successful
true
Human-readable message about the operation
"Transfer rejected successfully"
ID of the approval being processed
"approval-123-e89b-12d3-a456-426614174002"
Current status after rejection
REJECTED "REJECTED"
Reason for rejection
"Transfer amount exceeds daily limit"
When the rejection was processed
"2024-01-15T11:00:00.000Z"