Get Started
All top-level Tight API resources support pulling data in bulk by utilizing cursor-based pagination. To get started, simply specify thelimit, which is the number of items to return on that page:
limit in data and a cursor object:
Paginate Forward or Backward
Use thecursor.after value to fetch the next page, or cursor.before to fetch the previous page. Include the appropriate cursor value in your next request.
If the response contains
cursor.after: null, you have reached the last page. If cursor.before: null, you are on the first page.Sort and Jump to a Specific Page
To sort results, add asorts parameter. To jump to a specific spot, use the start property within sorts.