View Balances

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

GET /http://sandbox.yogupay.com/auth/view-wallet

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

Headers

Name
Value

Content-Type

application/json

Header

<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
}

Last updated