1. USD Virtual Cards
Numero Documentation
  • Overview
  • Transfers & Payouts
    • Validate Account Number
      POST
    • Initiate Single Transfer
      POST
    • Initiate Bulk Transfer
      POST
    • Transfer Status
      GET
  • Virtual Accounts
    • Create Virtual Account Customer
      POST
    • Create Virtual Account Business
      POST
    • Get Virtual Account
      GET
    • Get All Virtual Accounts
      GET
  • Virtual Cards
    • USD Virtual Cards
      • Issue Card
        POST
      • Top Up Card
        POST
      • Withdraw From Card
        POST
      • Activate Card
        POST
      • Deactivate Card
        POST
      • Get Card Transactions
        POST
      • Get Merchant Customers
        POST
      • Get Card Details
        POST
      • List Cards By Customer Id
        POST
  • Transaction History
    • Get Transactions
      GET
  • Webhooks & Security
    • Webhook Notifications
    • Generate Signature
      POST
  1. USD Virtual Cards

Get Merchant Customers

POST
/api/v{{apiVersion}}/business/card/customers
DTO: MerchantCustomerRequestDto — currently empty object {}.
Response: ApiResponse<GetMerchantCustomerResponse>.
Important: Sign {} exactly (no spaces) if your server is strict about byte-for-byte JSON; adjust if your client emits different whitespace.

Request

Header Params

Body Params application/json

Examples

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://api-dev.usenumero.com/numeroaccount/api/v{{apiVersion}}/business/card/customers' \
--header '{{headerApiKeyName}}: {{businessApiKey}}' \
--header '{{headerSignatureName}}: {{requestSignature}}' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Response Response Example
{
  "status": true,
  "message": "Success",
  "code": "00",
  "version": "v1",
  "reference": "N2026032512010006",
  "data": {
    "merchantCustomers": [
      {
        "cardCustomerId": "cust_7a8b9c0d1e",
        "firstName": "Jane",
        "lastName": "Doe",
        "address1": "10 Broad Street",
        "address2": "Suite 2",
        "city": "Lagos",
        "state": "LA",
        "zipCode": "101241",
        "countryCode": "NG",
        "idNumber": "A12345678",
        "idType": "PASSPORT",
        "bvn": "22222222222",
        "cardIds": ["card_mid_abc123", "card_mid_def456"]
      }
    ]
  },
  "error": null
}
Modified at 2026-03-25 19:02:24
Previous
Get Card Transactions
Next
Get Card Details
Built with