List external transfers
OAuth scope: organization.read
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 👇
Authorizations
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.
Headers
Required only for Sandbox API requests; to get one, please sign up to the Developer Portal.
Query Parameters
External transfers can be filtered by their status
. This filter accepts an array of statuses.
pending
, processing
, canceled
, declined
, settled
"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).
Response
The response is of type object
.