Skip to main content
GET
/
v2.01
/
{ClientId}
/
users
/
{UserId}
/
recipients
// GET has no body parameters
[
    {
        "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"
    },
    {
        "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": "bankacc_m_01JCN1X2EHWG0JNJNPNQ21CW5G",
        "CreationDate": 1723035193,
        "DisplayName": null,
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "EUR",
        "Country": "FR",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    }
]

Documentation Index

Fetch the complete documentation index at: https://docs.mangopay.com/llms.txt

Use this file to discover all available pages before exploring further.

Note – Endpoint returns filtered list by defaultBy default, this endpoint returns only recipients with the RecipientScope value of PAYOUT. Specify ALL to retrieve both PAYIN and PAYOUT recipients, or PAYIN to retrieve only pay-in recipients.By default, results are sorted by CreationDate in descending order.

Path parameters

UserId
string
required
The unique identifier of the user.

Query parameters

page
integer
Start value: 1Default value: 1Indicates the index of the page for the pagination.
per_page
integer
Min. value: 1; max. value: 100Default value: 10Indicates the number of items returned for each page of the pagination.
Sort
string
Possible values: CreationDate:ASC, CreationDate:DESCDefault value: CreationDate:DESCIndicates the direction in which to sort the list.
RecipientScope
string
Possible values: ALL, PAYOUT, PAYINDefault value: PAYOUTBy default, this endpoint returns only recipients with the RecipientScope value of PAYOUT.Specify ALL to retrieve both PAYIN and PAYOUT recipients, or PAYIN to retrieve only pay-in recipients.Read more about recipient scopes

Responses

200

Recipients
array (objects)
The list of recipients created for the user.
[
    {
        "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"
    },
    {
        "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": "bankacc_m_01JCN1X2EHWG0JNJNPNQ21CW5G",
        "CreationDate": 1723035193,
        "DisplayName": null,
        "PayoutMethodType": "LocalBankTransfer",
        "RecipientType": "Individual",
        "Currency": "EUR",
        "Country": "FR",
        "UserId": "user_m_01JV6ZGXBE0VZSF4TEN9JK343Z",
        "Status": "ACTIVE",
        "RecipientScope": "PAYOUT"
    }
]
// GET has no body parameters