Verify Withdrawal

Verify cNGN Withdrawal

GET https://api.cngn.co/v1/api/withdraw/verify/{tnxRef}

This endpoint allows you to withdraw your cNGN to an external wallet address

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

URL Params

Name
Type
Description

tnxRef

string

Transaction Reference

Response

{
  "status": 200,
  "message": "Transaction fetched successfully",
  "data": "<encrypted response>"
}

Decrypted Response

{
  "status": 200,
  "message": "Transaction fetched successfully",
  "data": {
    "id": "c46a5f10-de39-4afb-b539-ed5b134a0fcd",
    "from": "Azawire Africa",
    "receiver": {
      "address": "0xb68459978a9FBD3BB3e45ed5972479c0f7711fe5"
    },
    "initiatorId": "d53da8c4-9e96-4353-82dc-8076d49a3911",
    "requires_multi_sig": false,
    "total_sigs_required": 1,
    "amount": "100",
    "description": "cNGN Withdrawal",
    "createdAt": "2025-01-24T19:20:51.289Z",
    "updatedAt": "2025-01-24T19:20:51.289Z",
    "trx_ref": "a8b2bc5c-f92c-4d9d-a523-93a0a1c0823b",
    "trx_type": "withdraw",
    "network": "bsc",
    "asset_type": "wrapped",
    "asset_symbol": "NGN",
    "base_trx_hash": "f6753a2e3c18edc9a287df7198724650ce6d3e32747d6294416d3cfa81a549c1",
    "extl_trx_hash": "0xc7036a232cc9db703507ded880998368059671ede92789e282cfca7d1566ddbd",
    "explorer_link": "https://bscscan.com/tx/0xc7036a232cc9db703507ded880998368059671ede92789e282cfca7d1566ddbd",
    "status": "completed",
    "va_deposit_session_id": null,
    "va_payment_ref": null,
    "mpc_trx_ref": null,
    "businessId": "9e38bcc4-d1c1-4158-bb70-b0f773fbd212",
    "swapAddress": null,
    "swapFromNetwork": null,
    "callback_url": null
  }
}

Last updated