Inspired by JSON-API's links
, object, this allows the API consumer to know more about the current list of objects requested.
Using the /products
endpoint, the response object will contain a links
object.
first
- Type:
string
(optional) - Description: URL to the first page of the current request.
- Type:
prev
- Type:
string
(optional) - Description: URL to the previous page of the current request.
- Type:
self
- Type:
string
(optional) - Description: URL to the current page of current request.
- Type:
next
- Type:
string
(optional) - Description: URL to the next page of the current request. Use the presence of this URL to know whether you have more pages to request when downloading pages sequentially from our API.
- Type:
last
- Type:
string
(optional) - Description: URL to the final page of the current request.
- Type: