Skip to main content
GET
/
v1
/
ext
/
wallet
/
multi-currency
/
{entityId}
/
{type}
Get An End User Multi-Currency Wallets (USD & NGN)
curl --request GET \
  --url https://staging-api.liquidity.walletos.xyz/v1/ext/wallet/multi-currency/{entityId}/{type} \
  --header 'Authorization: Bearer <token>'
{
  "wallets": [
    {
      "id": "79f4e636-9531-4eea-a32d-3792fd63af41",
      "slug": "NGN Wallet",
      "description": "NGN Wallet",
      "currency": "NGN",
      "balance": "0",
      "permissions": {
        "permissionType": "OWNER",
        "permissionFlowType": "ALL"
      },
      "settings": {
        "walletType": "USER",
        "approvalThreshold": 1,
        "displayCurrency": "NGN",
        "fundingCurrencies": [
          "USD",
          "NGN"
        ],
        "withdrawalCurrencies": [
          "USD",
          "NGN"
        ],
        "showBalance": true
      }
    },
    {
      "id": "feb80df3-060c-4cf5-9b8e-91ae67fb5208",
      "slug": "USD Wallet",
      "description": "NGN Wallet",
      "currency": "USD",
      "balance": "0",
      "permissions": {
        "permissionType": "OWNER",
        "permissionFlowType": "ALL"
      },
      "settings": {
        "walletType": "USER",
        "approvalThreshold": 1,
        "displayCurrency": "USD",
        "fundingCurrencies": [
          "USD",
          "NGN"
        ],
        "withdrawalCurrencies": [
          "USD",
          "NGN"
        ],
        "showBalance": true
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

entityId
string
required
type
string
required

Response

200 - application/json

OK

The response is of type object.