Pagination
Capyflow API paginate some endpoints
Paginated endpoint arguments
You can put these arguments in the requested api route to personalize the pagination
Key | Description |
---|---|
page | The page number. Default: 1 |
page_size | The size of the page. Default: 20 |
Example: /api/import-attempts/IMPORTER_UUID/pull/?page=2&page_size=50
Paginate response structure
Key | Description |
---|---|
Count | The total number of items in the paginator |
Next | The URL for the next page of results |
Previous | The URL for the previous page of results |
Results | The actual data results for the current page, as an array |