Skip to main content
GET
/
portal
/
email
/
wallet
Wallet balance & history
curl --request GET \
  --url https://api.useduro.com/portal/email/wallet \
  --header 'x-portal-session: <api-key>'
{
  "balance": 123,
  "currency": "<string>",
  "transactions": [
    {
      "id": "<string>",
      "amount": 123,
      "balanceAfter": 123,
      "memo": "<string>",
      "merchantName": "<string>",
      "createdAt": "<string>"
    }
  ]
}

Authorizations

x-portal-session
string
header
required

The session token returned by /portal/email/verify.

Response

200 - application/json

OK

balance
integer

Minor units (kobo).

currency
string
status
enum<string>
Available options:
active,
frozen,
closed
transactions
object[]