API Details
Pagination
Listing endpoints, for example List all Businesses and List all Bank Transactions support cursor-based pagination. Pagination can be controlled via query string parameters:
sort_by
which supports some timestamp, integer and string keys. Valid sort keys are noted in documentation where applicable. Sort key is optional.sort_order
specifies either ASC or DESC ordering for the sort key. Optional, ASC by default.cursor
returned by the previous list request. Do not specify for the initial listing API call.limit
constrains the number of results to be returned. Defaults to 100 for most endpoints.
Request
Responses to paginating endpoints will include pagination data in the meta response field.
Response
When the has_more
field is true, use the returned cursor in an additional request to fetch the next page of results.