Pagination

Some endpoints that return a list of objects use pagination with a maximum of 100 records per page.

Endpoints using pagination:

  • GET /signature_requests
  • GET /contacts
  • GET /users

We use a pagination by cursor, response contain an array of results and a next_cursor in the node meta of the response.

If it is not null, it means that extra results are available. You can can use the next_cursor in another request to receive the next part of the list, passing it as a query param after.

{
    "meta": {
        "next_cursor": "MTYzMDk0MDg3My43Nj.."
    },
    "data": []
}