GET
/inbound_check_depositsList inbound check deposits
Lists inbound check deposits attempted against your accounts. Filter results by account, related check transfer, or creation time, and use cursor to request the next page. The limit defaults to 100 and cannot exceed 100.
cursorstringoptional
Pagination cursor; returns the page of entries after the specified entry.
limitintegeroptional
Maximum number of deposits to return. Must be at least 1 and defaults to 100; the maximum is 100.
account_idstringoptional
Filter results to inbound check deposits belonging to this account.
check_transfer_idstringoptional
Filter results to inbound check deposits belonging to this check transfer.
created_at.afterstringoptional
Return results created after this ISO 8601 timestamp.
created_at.beforestringoptional
Return results created before this ISO 8601 timestamp.
created_at.on_or_afterstringoptional
Return results created on or after this ISO 8601 timestamp.
created_at.on_or_beforestringoptional
Return results created on or before this ISO 8601 timestamp.
200Returns a list of inbound check deposit objects in `data` and a `next_cursor` for retrieving the next page, or null when there is no next page.
dataarray<InboundCheckDeposit>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 encounters a client-side error.
5XXReturned when the request encounters a server-side error.
Error handling
limit must be between 1 and 100. Date filters must use ISO 8601 timestamps.