Skip to main content
POST
/
v2
/
transfer-approvals
/
{approvalId}
/
reject
Reject a transfer
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"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

approvalId
string<uuid>
required

ID of the transfer approval

Body

application/json

Request body for rejecting a transfer

reason
string

Reason for rejecting the transfer

Maximum length: 1000
Example:

"Transfer amount exceeds daily limit"

Response

Transfer rejected successfully

success
boolean

Whether the operation was successful

Example:

true

message
string

Human-readable message about the operation

Example:

"Transfer rejected successfully"

approvalId
string<uuid>

ID of the approval being processed

Example:

"approval-123-e89b-12d3-a456-426614174002"

status
enum<string>

Current status after rejection

Available options:
REJECTED
Example:

"REJECTED"

reason
string

Reason for rejection

Example:

"Transfer amount exceeds daily limit"

timestamp
string<date-time>

When the rejection was processed

Example:

"2024-01-15T11:00:00.000Z"

I