Paginated Response
Endpoints that return a list of objects break the list up into multiple pages of up to 15 objects. For example, a list of 100 employees will be broken down into 7 pages, with the first six pages containing 15 employees each and the last page containing the remaining 10 employees.data property contains the current page of objects.
The links and meta properties contain information about the pagination of the objects, allowing clients to navigate through the paginated data efficiently and correctly.
The links property contains links to four specific pages of data:
first: The URL of the first page of objects.last: The URL of the last page of objects.prev: The URL of the previous page of objects, ornullif the current page is the first page.next: The URL of the next page of objects, ornullif the current page is the last page.
meta property contains metadata about the pagination:
current_page: The page number of the current page of objects.last_page: The page number of the last page of objects, which is the total number of pages in the list.per_page: The number of objects returned per page (15).total: The total number of objects in the list.has_more:trueif there are more pages available, orfalseif the current page is the last page of objects.

