Listing Search
POST /sellers/listings/v3/search
It lets the seller/partner to fetch all of the seller's listings along with FSN and SKU in a batch of 500. Payload can contain listing_status and page_id. One can pass ACTIVE/INACTIVE in the listing_status or don't pass the listing_status field for fetching all the listings. page_id can be null or encrypted page_id. Provide null as the page_id when retrieving the first page. For subsequent pages, use the next_page_id from the previous response as the page_id, but only if has_more is true.
- application/json
Request Body required
filters object
lisitng_status stringPossible values: [
ACTIVE,INACTIVE]- page_id string
Responses
- 200
successful operation
- application/json
- Schema
- Example (from schema)
Schema
- next_page_id string
- has_more boolean
listings object
listing_id stringproduct_id stringsku_id string
{
"next_page_id": "string",
"has_more": true,
"listings": {
"listing_id": "string",
"product_id": "string",
"sku_id": "string"
}
}
Loading...