Withdraw cNGN
Withdraw cNGN
POST
https://api.cngn.co/v1/api/withdraw
This endpoint allows you to withdraw your cNGN to an external wallet address
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Body
Name
Type
Description
amount
number
Amount of cNGN you wish to withdraw
address
string
Wallet address to withdraw your cNGN to
shouldSaveAddress
boolean
if you wish to save wallet address as a beneficiary
Response
{
"status": 200,
"message": "Withdrawal was successfully",
"data": "<encrypted response>"
}
Decrypted Response
{
"status": 200,
"message": "Withdrawal was successfully",
"data": {
"trxRef": "a8b2bc5c-f92c-4d9d-a523-93a0a1c0823b",
"address": "0xb68459978a9FBD3BB3e45ed5972479c0f7711fe5"
}
}
Last updated