POST /v6/catalog/navigate

POST /v6/catalog/navigate

Body Required

  • pageNumber integer(int32)
  • direction array[integer(int32)] | null

Responses

  • OK

    Hide response attributes Show response attributes object
    • errorMessage string | null
    • catalogPage array[object] | null
      Hide catalogPage attributes Show catalogPage attributes object
      • item1 string | null
      • item2 integer(int32)
    • notesCount integer(int32) | null
    • pageNumber integer(int32) | null
POST /v6/catalog/navigate
curl \
 --request POST 'http://api.example.com/v6/catalog/navigate' \
 --header "Content-Type: application/json" \
 --data '{"pageNumber":42,"direction":[42]}'
curl \
 --request POST 'http://api.example.com/v6/catalog/navigate' \
 --header "Content-Type: text/json"
curl \
 --request POST 'http://api.example.com/v6/catalog/navigate' \
 --header "Content-Type: application/*+json"
Request examples
{
  "pageNumber": 42,
  "direction": [
    42
  ]
}