Browpay API Documentation
  • Home
  • Escrow QuickStart Guide
  • Authentication
  • Webhooks
    • Signature Validation
    • Encryption and Decryption
  • Payments
    • Collect Payments
      • Initialize Transaction
      • Verify Payments
      • List Payments
    • Transaction Codes
      • Verify Token
      • List Codes
  • Payouts
    • Account Resolution
    • Transfers
      • Create Transfer
      • Fetch Transfer
      • List Transfers
  • Customers
    • Fetch Customers
    • Load Customer
  • Products
    • Fetch Products
  • Miscellaneous
    • Balances
    • Banks
    • Countries
  • Plugins
    • Plugins and Libraries
Powered by GitBook
On this page

Was this helpful?

  1. Payments
  2. Transaction Codes

List Codes

Fetch a list of all the payment tokens you verified.

GET {{base_url}}/codes

Fields with * are required

Headers

Name
Type
Description

Authorization*

String

Bearer {{your_secret_key}}

{
    "status": true,
    "message": "Data Retrieved Successfully",
    "data": [
        {
            "token": "8b5etWL4",
            "amount": "230000",
            "currency": "NGN",
            "customer": {
                "name": "Gucci Buyer",
                "customer_tag": "CUS_ZVqNWCjsnXt4"
            },
            "createdAt": "2023-05-12T16:58:20.000000Z",
            "updatedAt": "2023-11-09T05:49:49.000000Z"
        }
    ]
}
PreviousVerify TokenNextAccount Resolution

Last updated 5 months ago

Was this helpful?