GET
/api/v1/payments/walletsClé APILister les wallets
Retourne les wallets associés au marchand authentifié.
Réponse (data)
| Nom | Type | Requis | Description |
|---|---|---|---|
| object | string | Oui | Toujours wallet |
| id | string | Oui | walletId |
| merchantId | string | Oui | Marchand propriétaire |
| label | string | Oui | Libellé affiché |
| available | string | Oui | Solde disponible |
| held | string | Oui | Fonds retenus |
| balance | string | Oui | Solde ledger |
| currency | string | Oui | Devise |
Exemple réponse
json
{
"success": true,
"data": [
{
"object": "wallet",
"id": "6015fa0e-0e44-461e-9ec8-b598ca19c14b",
"merchantId": "mch-1",
"label": "Boutique Kinshasa",
"balance": "7600.00",
"available": "7350.00",
"held": "250.00",
"pending": "250.00",
"reserved": "0.00",
"ledgerBalance": "7600.00",
"currency": "USD"
}
],
"error": null
}Exemples
bash
curl -X GET https://api.dev.izzi-finance.com/api/v1/api/v1/payments/wallets \
-H "Authorization: Bearer izzi_mk_sandbox_…" \
-H "Content-Type: application/json"