Yogupay
  • Welcome!
  • Getting Started
    • Signing Up
    • Onboarding Process
    • Environments
    • Compliance
      • Documents Required
      • Terms & Conditions
      • Licenses
      • Privacy Policy
  • Business Dashboard
    • Login
    • Dashboard
    • View Balances
    • Add Money (Deposit)
    • Adding a Beneficiary
    • Send Money
    • Swap Currencies
    • Whitelist your IPs
    • Viewing Transactions
  • Developers
    • Authentication
    • API response codes
    • 🏦Bank Codes
    • 💱Currency Codes
    • View Account Balances
    • View All Transactions
    • Get Transaction By ID
    • 🌍Payout Africa
      • 🇬🇭Payout Ghana
      • 🇰🇪Payout Kenya
      • 🇳🇬Payout Nigeria
        • Verify Bank Account NGN
      • 🇺🇬Payout Uganda
      • 🇨🇲Payout Cameroon
      • 🇨🇮Payout Ivory Coast
    • 🌎Payout LATAM
Powered by GitBook
On this page
  1. Developers

View Account Balances

This guide enables you to view the balances you currently have in your account

GET / auth/view-wallet

This endpoint is used to view the wallet details through an HTTP GET request

Headers

Name
Value

Content-Type

application/json

Token

<token>

Response

{
  "id": 1,
{
  "status": integer,
  "transactions": [
    {
      "id": integer,
      "customer_id": integer,
      "currency": string,
      "actual_balance": integer,
      "held_balance": integer,
      "transacted_balance": integer,
      "created_at": string,
      "updated_at": string|null,
      "status": integer
    }
  ],
  "message": string
}
{
  "error": "Invalid request"
}

PreviousCurrency CodesNextView All Transactions

Last updated 22 days ago