GET
/
v2.01
/
{ClientId}
/
users
/
{UserId}
/
recipients
// GET has no body parameters
[
    {
        "Id": "bankacc_m_01JCN1X2EHWG0JNJNPNQ21CW5G",
        "CreationDate": 1723035193,
        "DisplayName": null,
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "EUR",
        "Country": "FR",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    },
    {
        "Id": "rec_01JV70P7J10PRZP0JQQ9CQZFN8",
        "CreationDate": 1746622392,
        "DisplayName": "Alex Smith EUR account",
        "PayoutMethodType": "InternationalBankTransfer",
        "RecipientType": "Business",
        "Currency": "EUR",
        "Country": "FR",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    },
    {
        "Id": "rec_01JV6ZZG6W0RKG6ZGA3MEY60BZ",
        "CreationDate": 1746699783,
        "DisplayName": "Alex Smith USD account",
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "USD",
        "Country": "US",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "CANCELED",
        "RecipientScope": "PAYOUT"
    }
]
Note – Endpoint returns filtered list by defaultBy default, this endpoint returns only recipients with the RecipientScope value of PAYOUT. To retrieve PAYIN recipients, you need to specify the value in the RecipientScope query parameter.

Path parameters

UserId
string
required
The unique identifier of the user.

Query parameters

RecipientScope
string
Possible values: PAYINBy default, this endpoint returns only recipients with the RecipientScope value of PAYOUT unless PAYIN is specified as the query parameter value. It is also not possible to combine the query values.Read more about recipient scopes in the guide.

Responses

200

[
    {
        "Id": "bankacc_m_01JCN1X2EHWG0JNJNPNQ21CW5G",
        "CreationDate": 1723035193,
        "DisplayName": null,
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "EUR",
        "Country": "FR",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    },
    {
        "Id": "rec_01JV70P7J10PRZP0JQQ9CQZFN8",
        "CreationDate": 1746622392,
        "DisplayName": "Alex Smith EUR account",
        "PayoutMethodType": "InternationalBankTransfer",
        "RecipientType": "Business",
        "Currency": "EUR",
        "Country": "FR",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    },
    {
        "Id": "rec_01JV6ZZG6W0RKG6ZGA3MEY60BZ",
        "CreationDate": 1746699783,
        "DisplayName": "Alex Smith USD account",
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "USD",
        "Country": "US",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "CANCELED",
        "RecipientScope": "PAYOUT"
    }
]
// GET has no body parameters