---
title: "$viva->wallets->listDetailed()"
method: GET
path: "/Wallets/listDetailed"
tags: ["Wallets"]
---

# $viva->wallets->listDetailed()

`GET /Wallets/listDetailed`

Liste les portefeuilles avec des détails enrichis (IBAN, SWIFT, etc.).

```php
$wallets = $viva->wallets->listDetailed();

foreach ($wallets as $wallet) {
    echo $wallet['iban'] . ' — ' . $wallet['amount'] . "\n";
    echo $wallet['isPrimary'] ? 'Principal' : 'Secondaire';
}
```

## Response `200`

Liste détaillée des portefeuilles

- WalletDetailed[]
  - `iban` string — IBAN du portefeuille
  - `walletId` integer — ID numérique du portefeuille
  - `amount` number, float — Solde actuel
  - `isPrimary` boolean — Portefeuille principal ?
  - `currencyCode` string — Code devise ISO 4217
  - `friendlyName` string, nullable — Nom d'affichage

---

[API](https://skmtc.net/qrcommunication/apis/viva-wallet-merchant-sdk-re-fe-rence-php.md) · [All operations](https://skmtc.net/qrcommunication/apis/viva-wallet-merchant-sdk-re-fe-rence-php/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/qrcommunication/viva-wallet-merchant-sdk-re-fe-rence-php/versions/bcafd06ce584/schema)
