Selling Partner API SDK for JavaScript
    Preparing search index...

    When a request produces a response that exceeds the pageSize, pagination occurs. This means the response is divided into individual pages. To retrieve the next page or the previous page, you must pass the nextToken value or the previousToken value as the pageToken parameter in the next request. When you receive the last page, there is no nextToken key in the pagination object.

    interface Pagination {
        nextToken?: string;
        previousToken?: string;
    }
    Index

    Properties

    nextToken?: string

    A token that can be used to fetch the next page.

    previousToken?: string

    A token that can be used to fetch the previous page.