curl --request POST \
--url https://staging-api.getpartna.com/v4/transfer \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"amount": 0,
"currency": "",
"fromAccount": "",
"toAccount": "",
"transactionReference": ""
}'
{
"data": {},
"message": "success"
}
Create transfer.
curl --request POST \
--url https://staging-api.getpartna.com/v4/transfer \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"amount": 0,
"currency": "",
"fromAccount": "",
"toAccount": "",
"transactionReference": ""
}'
{
"data": {},
"message": "success"
}
post transfer ok
The response is of type object
.