Pagination
Requests to view lists of objects will paginate the results, with a default page size of 100.
This request will return the first 100 Edit Checks within the Draft with ID 999:
https://beta.trialgrid.io/api/v2/drafts/999/checks
Pagination can be modified using query parameters limit and offset.
This request will return the first 1000 Edit Checks within a Draft:
https://beta.trialgrid.io/api/v2/drafts/999/checks/?limit=1000
…and this request will return the next 1000 Edit Checks:
https://beta.trialgrid.io/api/v2/drafts/999/checks/?limit=1000&offset=1000