POST
/
transfers
/
initiate
/
{method}
curl --request POST \
  --url https://api.live.paisr.tech/{version}/transfers/initiate/{method} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "source": "<string>",
  "destination": "<string>",
  "amount": 123,
  "reference": "<string>"
}'
{
  "success": true,
  "data": {
    "id": "tra_123456",
    "status": "pending-approval"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

method
enum<string>
required

The Transfer Method.

Available options:
peer,
move,
bank,
batch

Body

application/json
The details required to initiate the transfer.

The body is of type object.

Response

200
application/json
Successfully initiated transfer.

The response is of type object.