GET
/exportsList exports
Lists generated exports, including their categories and processing statuses. Filter by category, status, creation time, or the account associated with a tax form, and use cursor to retrieve subsequent pages.
cursorstringoptional
Pagination cursor identifying the position after which to return exports. Omit it to start from the first page.
limitintegeroptional
Maximum number of exports to return. Must be at least 1 and defaults to 100 when omitted.
created_at.afterstringoptional
Return exports created after this ISO 8601 timestamp.
created_at.beforestringoptional
Return exports created before this ISO 8601 timestamp.
created_at.on_or_afterstringoptional
Return exports created at or after this ISO 8601 timestamp.
created_at.on_or_beforestringoptional
Return exports created at or before this ISO 8601 timestamp.
categorystringoptional
Filter by export category, such as account_statement_ofx, transaction_csv, or form_1099_int.
status.inarray<string>optional
Filter by one or more export statuses, encoded as a comma-delimited list: pending, complete, or failed.
form_1099_int.account_idstringoptional
Filter Form 1099-INT exports to those for the specified account.
form_1099_misc.account_idstringoptional
Filter Form 1099-MISC exports to those for the specified account.
idempotency_keystringoptional
Filter for the export associated with this idempotency key. Must be 1 to 200 characters.
200Returns a page containing export objects and a `next_cursor` value for retrieving the next page; the cursor is null when there are no further results.
dataarray<Export>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 and each creation-time filter must be a valid ISO 8601 timestamp. status.in accepts pending, complete, or failed; idempotency_key must be 1 to 200 characters.