GET
/
v2.01
/
{ClientId}
/
users
/
{UserId}
/
recipients
[
    {
        "Id": "rec_01JV700CD7E5GP9SFZHGX0RV2E",
        "DisplayName": "Alex Smith USD account",
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "USD",
        "Country": "US",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    },
    {
        "Id": "rec_01JV6ZZG6W0RKG6ZGA3MEY60BZ",
        "DisplayName": "Alex Smith USD account",
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "USD",
        "Country": "US",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "CANCELED",
        "RecipientScope": "PAYOUT"
    },
    {
        "Id": "rec_01JV70P7J10PRZP0JQQ9CQZFN8",
        "DisplayName": "Alex Smith EUR account",
        "PayoutMethodType": "InternationalBankTransfer",
        "RecipientType": "Business",
        "Currency": "EUR",
        "Country": "FR",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    }
]

Note – Endpoint returns filtered list by default

By 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: PAYIN

By 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

[
    {
        "Id": "rec_01JV700CD7E5GP9SFZHGX0RV2E",
        "DisplayName": "Alex Smith USD account",
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "USD",
        "Country": "US",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    },
    {
        "Id": "rec_01JV6ZZG6W0RKG6ZGA3MEY60BZ",
        "DisplayName": "Alex Smith USD account",
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "USD",
        "Country": "US",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "CANCELED",
        "RecipientScope": "PAYOUT"
    },
    {
        "Id": "rec_01JV70P7J10PRZP0JQQ9CQZFN8",
        "DisplayName": "Alex Smith EUR account",
        "PayoutMethodType": "InternationalBankTransfer",
        "RecipientType": "Business",
        "Currency": "EUR",
        "Country": "FR",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    }
]