All top-level resources support pagination. AllDocumentation Index
Fetch the complete documentation index at: https://help.elationhealth.com/llms.txt
Use this file to discover all available pages before exploring further.
Find methods return a list of results along with pagination details. Each query can return up to 100 results. The most performant and reliable method for pagination is cursor-based, but offset-based pagination is also supported.
Cursor-Based Pagination
Cursor-based pagination is used by default. If the cursor argument is empty or omitted, results begin at the start of the dataset (by default ordered by ascendingid).
next: URL for the next page of resultsprevious: URL for the previous page (if available)results: The current page of data
Offset-Based Pagination
If anoffset parameter is provided, the API will use offset-based pagination. This method uses the limit and offset parameters.
count: The total number of items in the full result setnext: URL for the next page of resultsprevious: URL for the previous page of resultsresults: The current page of data
Summary: Use cursor-based pagination whenever possible for the best performance and reliability. Offset-based pagination remains available for users that require it.