Selling partner listings items and search related metadata.

ItemSearchResults

interface ItemSearchResults {
    items: Item[];
    numberOfResults: number;
    pagination?: Pagination;
}

Properties

items: Item[]

A list of listings items.

ItemSearchResults

numberOfResults: number

The total number of selling partner listings items found for the search criteria (only results up to the page count limit will be returned per request regardless of the number found). Note: The maximum number of items (SKUs) that can be returned and paged through is 1000.

ItemSearchResults

pagination?: Pagination

ItemSearchResults