For the complete documentation index, see llms.txt. This page is also available as Markdown.

Update Bank Account

Update the bank account details associated with your business for fiat payouts.

Update Bank Account

PUT https://api.cngn.co/v1/api/bank-account

Updates the bank account on file for your merchant business.

Request Body

Name
Type
Description

bankName*

string

Full name of the bank. Automatically trimmed.

bankAccountName*

string

Account holder name. Must match the KYB-registered entity. Automatically trimmed.

bankAccountNumber*

string

Bank account number. Automatically trimmed.

{
  "status": 200,
  "message": "Bank account updated successfully",
  "data": {
    "bankName": "Access Bank",
    "bankAccountName": "John Doe Enterprises",
    "bankAccountNumber": "0123456789"
  }
}

Example Request

curl -X PUT https://api.cngn.co/v1/api/bank-account \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "bankName": "Access Bank",
    "bankAccountName": "John Doe Enterprises",
    "bankAccountNumber": "0123456789"
  }'

Last updated