Skip to main content
POST
/
v1
/
banking
/
transfer
Initiate Transfer
curl --request POST \
  --url https://api.unpay.in/v1/banking/transfer \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "from_account": "<string>",
  "to_account": "<string>",
  "amount": 123
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
from_account
string
to_account
string
amount
number

Response

200

Transfer initiated