This API provides hypermedia link members to help the client to navigate paginated data. This example within a metadata object shows the set of links to navigate back and forth within the results, to go to the first
or last
page, or to access the current page. Self
is used to go to a particular item in the list. Next
is used to go to the next page of results.
"links": [
{
"href": "/cloudlets/v3/policies?page=0&size=10",
"rel": "first"
},
{
"href": "/cloudlets/v3/policies?page=0&size=10",
"rel": "self"
},
{
"href": "/cloudlets/v3/policies?page=1&size=10",
"rel": "next"
},
{
"href": "/cloudlets/v3/policies?page=110&size=10",
"rel": "last"
}
]