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

Verify Token

This endpoint gives you the access to redeem your token and credit your wallet for fund access per transaction. On the other hand, see the QuickStart guide Step 3 and Step 4 to learn how we handle and automate token redemption to ensure you are credited.

POST {{base_url}}/token/verify

Fields with * are required

Headers

Name
Type
Description

Authorization*

String

Bearer {{your_secret_key}}

Request Body

Name
Type
Description

token*

String

8-length alphanumeric token

{
    "success": false,
    "error": "Error in request",
    "message": "That token is currently unavailable; ensure you are providing the correct token."
}
{
    "success": true,
    "message": "The payment token has been successfully redeemed.",
    "data": {
        "credit_amount": 27875,
        "currency": "NGN",
        "customer": "Ciroma Alade",
        "payment_date": "2024-01-20T22:57:10.000000Z",
        "updated_at": "2024-01-27T16:10:51.000000Z"
    }
}
PreviousTransaction CodesNextList Codes

Last updated 4 months ago

Was this helpful?