API Pagination
Edited
API Endpoints that support pagination will include NextKey
and a HasMore
value.
HasMore will let you know if there are more records after this set of data.
NextKey can be passed in
As a query string parameter (?lastEvaluatedKey=XXXXXX)
As a value in a body ({"lastEvaluatedKey":"XXXXXXX"})
If the endpoint is a GET, it will use a query string. If the endpoint is a POST, it will use a value in the body.