Account
Bank
Transfer
Discount
KYC
Supported
Transfer
Withdraw
Initiate withdrawal.
POST
/
transfer
/
withdraw
Copy
curl --request POST \
--url https://staging-api.getpartna.com/v4/transfer/withdraw \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"accountNumber": "",
"address": "",
"amount": 0,
"bankCode": "",
"currency": "",
"fromAccount": "",
"network": "",
"otp": "",
"transactionReference": "",
"type": ""
}'
Copy
{
"data": null,
"message": "request completed"
}
Body
application/json
Response
200
application/json
post transfer withdraw ok
The response is of type object
.
Copy
curl --request POST \
--url https://staging-api.getpartna.com/v4/transfer/withdraw \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--header 'x-api-user: <api-key>' \
--data '{
"accountNumber": "",
"address": "",
"amount": 0,
"bankCode": "",
"currency": "",
"fromAccount": "",
"network": "",
"otp": "",
"transactionReference": "",
"type": ""
}'
Copy
{
"data": null,
"message": "request completed"
}
Assistant
Responses are generated using AI and may contain mistakes.