Interface ProductPricingApiModelItemOffersRequest

ItemOffersRequest

interface ProductPricingApiModelItemOffersRequest {
    CustomerType?:
        | ProductPricingApiModelCustomerType
        | "Consumer"
        | "Business";
    headers?: { [key: string]: string };
    ItemCondition:
        | "Refurbished"
        | "Club"
        | "New"
        | ProductPricingApiModelItemCondition
        | "Used"
        | "Collectible";
    MarketplaceId: string;
    method: | "GET"
    | "DELETE"
    | "POST"
    | "PUT"
    | "PATCH"
    | ProductPricingApiModelHttpMethod;
    uri: string;
}

Properties

CustomerType?: ProductPricingApiModelCustomerType | "Consumer" | "Business"

ItemOffersRequest

headers?: { [key: string]: string }

A mapping of additional HTTP headers to send/receive for the individual batch request.

ItemOffersRequest

ItemCondition:
    | "Refurbished"
    | "Club"
    | "New"
    | ProductPricingApiModelItemCondition
    | "Used"
    | "Collectible"

ItemOffersRequest

MarketplaceId: string

A marketplace identifier. Specifies the marketplace for which prices are returned.

ItemOffersRequest

method:
    | "GET"
    | "DELETE"
    | "POST"
    | "PUT"
    | "PATCH"
    | ProductPricingApiModelHttpMethod

ItemOffersRequest

uri: string

The resource path of the operation you are calling in batch without any query parameters. If you are calling getItemOffersBatch, supply the path of getItemOffers. Example: /products/pricing/v0/items/B000P6Q7MY/offers If you are calling getListingOffersBatch, supply the path of getListingOffers. Example: /products/pricing/v0/listings/B000P6Q7MY/offers

ItemOffersRequest

MMNEPVFCICPMFPCPTTAAATR