OAuth scope: organization.read
This endpoint will be deprecated on March 31, 2026. For SEPA transfers, please use the List SEPA Transfers endpoint instead.
Retrieves the list of external transfers for the authenticated organization.
You can filter (ex: only retrieve the latest external transfers) and sort this list by using query parameters
Bearer authorization header: Bearer <token>
, where <token>
is the access token received from the authorization server at the end of the OAuth 2.0 flow.
Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.
External transfers can be filtered by their status
. This filter accepts an array of statuses.
"status[]=processing&status[]=declined&status[]=settled"
External transfers can be filtered by their updated_at
property. This filter can be used in combination with the updated_at_to
query parameter to get external transfers updated within a specific timeframe. Please use a valid date time format (ISO 8601 for instance).
"2019-01-10T11:47:53.123Z"
External transfers can be filtered by their updated_at
property. This filter can be used in combination with the updated_at_from
query parameter to get external transfers updated within a specific timeframe. Please use a valid date time format (ISO 8601 for instance).
"2019-01-10T11:47:53.123Z"
External transfers can be filtered by their scheduled_date
property. This filter can be used in combination with the scheduled_date_to
query parameter to get external transfers scheduled within a specific timeframe. Please use a valid date time format (ISO 8601 for instance).
"2019-01-10"
External transfers can be filtered by their scheduled_date
property. This filter can be used in combination with the scheduled_date_from
query parameter to get external transfers scheduled within a specific timeframe. Please use a valid date time format (ISO 8601 for instance).
"2019-01-10"
External transfers can be filtered by their beneficiary_id
. You can provide a list of ids.
External transfers can be sorted by their scheduled_date
/ updated_at
property in 2 possible orders: asc
(Ascending) / desc
(Descending).
updated_at:asc
, updated_at:desc
, scheduled_date:asc
, scheduled_date:desc
Returned page (cf. Pagination).
Number of external transfers per page (cf. Pagination).
Returns the list of external transfers for the authenticated organization.
The response is of type object
.