GET
/external_accountsList external accounts
Lists external accounts stored for use as accounts at financial institutions other than Increase. Filter by status, routing number, or idempotency key, and use cursor to retrieve subsequent pages.
cursorstringoptional
Pagination cursor identifying the position after which to return external accounts. Omit it to start from the first page.
limitintegeroptional
Maximum number of external accounts to return. Must be at least 1 and defaults to 100 when omitted.
status.inarray<string>optional
Filter by one or more external account statuses, encoded as a comma-delimited list: active or archived.
routing_numberstringoptional
Filter by the account's ABA routing number. Must contain exactly 9 digits.
idempotency_keystringoptional
Filter for the external account associated with this idempotency key. Must be 1 to 200 characters.
200Returns a page containing external account objects and a `next_cursor` value for retrieving the next page; the cursor is null when there are no further results.
dataarray<ExternalAccount>required
The contents of the list.
next_cursorstringrequired
A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.
4XXReturned when the request cannot be processed because of a client-side error.
5XXReturned when the service encounters a server-side error.
Error handling
The limit query parameter must be at least 1. routing_number must contain exactly 9 digits, and idempotency_key must be 1 to 200 characters.