Skip to main content
GET
/
v2.01
/
{ClientId}
/
users
/
{UserId}
/
wallets
// GET has no body parameters
[
    {
        "Description": "Description of the user's wallet",
        "Owners": [
            "user_m_01J18HZSACR1EMYNY1TBS8KTJD"
        ],
        "Id": "wlt_m_01J18J1SQGG6KXNM3F8GD674TP",
        "Balance": {
            "Currency": "EUR",
            "Amount": 99800
        },
        "Currency": "EUR",
        "FundsType": "DEFAULT",
        "Tag": "Created using Mangopay API Postman Collection",
        "CreationDate": 1719348029
    },
    {
        "Description": "Description of the user's wallet",
        "Owners": [
            "user_m_01J18HZSACR1EMYNY1TBS8KTJD"
        ],
        "Id": "wlt_m_01J6EN9X1Q0PGM0CJ9QD197CRG",
        "Balance": {
            "Currency": "GBP",
            "Amount": 0
        },
        "Currency": "GBP",
        "FundsType": "DEFAULT",
        "Tag": "Created using Mangopay API Postman Collection",
        "CreationDate": 1724921476
    }
]
Note – SCA triggered by this endpointThis endpoint requires the user to complete SCA to authenticate the access to their wallet, unless SCA for wallet access was successfully completed in the last 180 days (read more about SCA on wallet access).When SCA is required, this endpoint returns a 401 - Unauthorized response.To let the user complete the SCA session on the Mangopay-hosted webpage, your platform needs to retrieve the RedirectUrl from the WWW-Authenticate response header, add an encoded returnUrl query parameter, and redirect the user. Read more about how to redirect them in the SCA session guide.

Path parameters

UserId
string
required
The unique identifier of the user.

Query parameters

ScaContext
string
Possible values: USER_PRESENT, USER_NOT_PRESENTThe SCA context of the request, which is required if the user’s UserCategory is OWNER:
  • USER_PRESENT – The user is taking the SCA-triggering action of accessing their wallet. The platform must redirect the user using the PendingUserAction.RedirectUrl returned so that the user can complete the SCA session (unless exempted because a successful SCA session for wallet access occurred in the last 180 days, so no redirection link was returned).
  • USER_NOT_PRESENT – The platform is taking the action under proxy from the user and the user has previously given consent to Mangopay (via the SCA hosted experience) to allow the action. If the user has not given (or has revoked) their consent, then USER_NOT_PRESENT returns a 403 error.
Read more about managing proxy and user consent Note: For existing platforms, the parameter is technically optional if the User is an OWNER, and the default value will become USER_PRESENT from Dec 15, 2025
unless a successful SCA session for wallet access occurred in the last 180 days.

Responses

Array (Wallets)
array
The list of wallets created by the platform.

401 - SCA required

When SCA is required for wallet access, this endpoint returns a 401 - Unauthorized response code with the redirectUrl in the WWW-Authenticate response header:
401 response header
WWW-Authenticate: PendingUserAction redirectUrl=https://sca.sandbox.mangopay.com/?token=0193cf51ed367151a0cb1c59def21e13
In this case, your platform needs to retrieve the URL value, encode and add a returnUrl query parameter, and redirect the user.Read more about SCA redirection and SCA on wallet access
[
    {
        "Description": "Description of the user's wallet",
        "Owners": [
            "user_m_01J18HZSACR1EMYNY1TBS8KTJD"
        ],
        "Id": "wlt_m_01J18J1SQGG6KXNM3F8GD674TP",
        "Balance": {
            "Currency": "EUR",
            "Amount": 99800
        },
        "Currency": "EUR",
        "FundsType": "DEFAULT",
        "Tag": "Created using Mangopay API Postman Collection",
        "CreationDate": 1719348029
    },
    {
        "Description": "Description of the user's wallet",
        "Owners": [
            "user_m_01J18HZSACR1EMYNY1TBS8KTJD"
        ],
        "Id": "wlt_m_01J6EN9X1Q0PGM0CJ9QD197CRG",
        "Balance": {
            "Currency": "GBP",
            "Amount": 0
        },
        "Currency": "GBP",
        "FundsType": "DEFAULT",
        "Tag": "Created using Mangopay API Postman Collection",
        "CreationDate": 1724921476
    }
]
// GET has no body parameters