Table of Contents
Get Wallets #
Returns the list of wallets created for a specific individual.
Endpoint #
GET https://api-test.10npay.com/api/v1/IndividualWallet/{id}/wallets
Path Parameters #
| Name | Description |
|---|---|
id |
Individual identifier (same ID used when creating the wallet). |
Headers #
Authorization: Bearer <access_token>Accept: application/json
Response — 200 OK #
[
{
"id": 456,
"currency": "BGN",
"status": "Active",
"iban": "BG12TEN0...",
"balance": 0.00
}
]
Errors #
- 400 Bad Request — individual has no wallets / invalid ID.
- 401 Unauthorized — missing/expired token.
- 404 Not Found — unknown individual.
- 5xx — transient server error.
Notes #
- Use this endpoint to list available wallets before selecting one for IBAN creation, balance checks, or payment methods.
