External Accounts
List transactions of a given external account
Returns a list of transactions on from the external account, given an external account ID. Maximum 500 transctions will be returned.
get/external_accounts/{external_account_id}/transactions
Path parameters
external_account_idstring uuid required
Example:7d943c51-e4ff-4e57-9558-08cab6b963c7
External Account ID
Query parameters
start_datestring date required
Date range filtering for transactions. Date is inclusive. Date must be in UTC.
end_datestring date required
Date range filtering for transactions. Date is exclusive. Date must be in UTC.
Response
The external account
Example response
{
"transactions": [
{
"currency": "USD",
"merchant_name": "Fancy store"
}
]
}