POST
/
transfers
/
{transaction_id}
/
approve
curl --request POST \
  --url https://api.live.paisr.tech/{version}/transfers/{transaction_id}/approve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "pin": "<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 approve a transfer.
pin
string
required

Source wallet PIN.

Response

200
application/json
Successfully approved transfer.
success
boolean

Indicates if the request was successful.

message
string

A descriptive message regarding the result.