Overview
The list method retrieves a paginated list of records from the specified object. You can use query parameters to filter, sort, and paginate through the results. Pagination is “cursor-based” which means that you can provide thecursor
from
the previous response to get the next page of results. This improves performance
on large datasets.
The ability to search, filter, and reorder results is coming soon!
Examples
Paginate through records
Paginate through records
This retrieves the first page of company records:The response contains an additional property Once
cursor
that provides a token
that can be passed in the next response:cursor
is null
, you have reached the end of the records.Customize page size
Customize page size
You can customize the number of records returned per page with the The maximum page size you can set is 1,000.
limit
query parameter:Usage
Authorizations
Path Parameters
Query Parameters
Limit the number of records returned. Default is 100.
Required range:
1 <= x <= 1000
Cursor from the previous response to resume pagination from.