POST
/
transfers
/
{transaction_id}
/
cancel
curl --request POST \
  --url https://api.live.paisr.tech/{version}/transfers/{transaction_id}/cancel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "note": "<string>"
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

transaction_id
string
required

The Transaction ID.

Body

application/json
The details required to cancel a transfer.
note
string
required

Reason for cancellation.

Response

200
application/json
Successfully canceled transfer.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.