eBay Trading APIVersion 1349
 

GetItem

Use this call to retrieve the data for a single item listed on an eBay site. GetItem returns the data in an Item object.

This call is conceptually similar to eBay's View item page. Data returned includes the item's title, description, price information, seller information, shipping details, high bidder information (if there currently is a high bidder), and so on.

Usage Details

GetItem returns item data for only a single item per call. Make multiple calls to GetItem to review details for more than a single item.

GetItem returns different sets of item information depending on how you set the DetailLevel input field. See GetItem Detail Controls for more information on how to control the fields returned.

Note that if a listing's end time is more than 90 days old, its title, price, and other item information are not returned by the call.

Note: For listings that return Item.DiscountPriceInfo.PricingTreatment set to MAP (Minimum Advertised Price), you are legally required to follow the rules for displaying the price of the item to potential buyers. You are bound by the terms of the API License Agreement to follow these rules. Refer to the API License Agreement for consequences of non-compliance.

Optimizing Your Calls

Rather than repeating calls to GetItem to retrieve data for multiple items listed by the same seller, use GetSellerList instead.

Automatic polling frequency can be increased during the last four hours of an auction. Only increase the frequency if the user is logged in and active in the system. During the last four hours of an auction, the maximum polling frequency is every 15 minutes. During the last 30 minutes of an auction, the maximum frequency is every five minutes.

Testing GetItem

You can test GetItem in the Sandbox. However, you must have existing items in the Sandbox before you can call GetItem. If necessary, add a new item using AddItem. Below are some test case scenarios to consider:

Related Information

See:
    Retrieve items
    Add pictures



Input

See also Samples.

The box below lists all fields that could be included in the call request. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).

See also the Deprecated Objects link above. Fields presented in this color are deprecated, and fields presented in this color are (or soon will be) non-operational.

The XML prototype does not include requester credentials. This is a documentation limitation only (see Standard Requester Credentials for Making Calls).

<?xml version="1.0" encoding="utf-8"?>
<GetItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <!-- Call-specific Input Fields -->
  <IncludeItemCompatibilityList> boolean </IncludeItemCompatibilityList>
  <IncludeItemSpecifics> boolean </IncludeItemSpecifics>
  <IncludeTaxTable> boolean </IncludeTaxTable>
  <IncludeWatchCount> boolean </IncludeWatchCount>
  <ItemID> ItemIDType (string) </ItemID>
  <SKU> SKUType (string) </SKU>
  <TransactionID> string </TransactionID>
  <VariationSKU> SKUType (string) </VariationSKU>
  <VariationSpecifics> NameValueListArrayType
    <NameValueList> NameValueListType
      <Name> string </Name>
      <Value> string </Value>
      <!-- ... more Value values allowed here ... -->
    </NameValueList>
    <!-- ... more NameValueList nodes allowed here ... -->
  </VariationSpecifics>
  <!-- Standard Input Fields -->
  <DetailLevel> DetailLevelCodeType </DetailLevel>
  <!-- ... more DetailLevel values allowed here ... -->
  <ErrorLanguage> string </ErrorLanguage>
  <MessageID> string </MessageID>
  <OutputSelector> string </OutputSelector>
  <!-- ... more OutputSelector values allowed here ... -->
  <Version> string </Version>
  <WarningLevel> WarningLevelCodeType </WarningLevel>
</GetItemRequest>
Argument Type Occurrence Meaning
Call-specific Input Fields [Jump to standard fields]
IncludeItemCompatibilityList boolean Optional This field is used to specify whether or not to retrieve Parts Compatiblity information for a motor part or accessory listing. If this field is included and set to true, the Item.ItemCompatibilityList container will be returned if a Parts Compatibility list exists for the listing. A Parts Compatibility list is a list of motor vehicles that are compatible with the listed motor part or accesory item. If a Parts Compatibility list does not exist for the listing, this field will have no effect if it is included, regardless of its value (true or false).

If this field is included and set to false or omitted, but a Parts Compatibility list does exist for the listing, the Item.ItemCompatibilityList container will not be returned, but the Item.ItemCompatibilityCount field will be returned, and this field will simply indicate the quantity of motor vehicles that are compatible with the the listed motor part or accesory item.

Parts Compatibility lists are only applicable to motor parts and accessory categories on the sites that support eBay Motors - US, CA, UK, and DE.
Default: false.

See:
    ItemCompatibilityCount
    ItemCompatibilityList
    Parts and accessories

IncludeItemSpecifics boolean Optional If this field is included and set to true, the call response includes the ItemSpecifics container if Item Specifics are defined for the listing.

An Item Specific is any aspect that helps define/classify the item. Many eBay categories mandate including specific Item Specifics, so it is always a good idea to make a call to the getItemAspectsForCategory method of the Taxonomy API to see what Item Specifics are required and which ones are recommended.

Including this field and setting it to true will also return the UnitInfo container if applicable. The UnitInfo container will provide information about the weight, volume or other quantity measurement of a listed item. The European Union requires listings for certain types of products to include the price per unit so buyers can accurately compare prices. eBay uses the UnitType and UnitQuantity values and the item's listed price to calculate and display the per-unit price on eBay EU sites.
Default: false.

See Item specifics.

IncludeTaxTable boolean Optional The seller will include this field and set its value to true if the seller wishes to view the defined sales tax rates for the various jurisdictions in the country (generally, states and provinces). Information for each defined sales tax rate will be returned in the TaxTable container in the response.

Even if this field is included and set to true, no TaxTable container will be returned If no sales tax rates are defined for any tax jurisdiction in the seller's sales tax table.

Sales tax tables are only available for eBay US and Canada marketplaces. Sales tax rates can be added/modified in My eBay, through the SetTaxTable and GetTaxTable calls of the Trading API, or through the Sales Tax calls of the Account API.
Default: false.
IncludeWatchCount boolean Optional The seller can include this field and set its value to true if that seller wants to see how many prospective bidders/buyers currently have the item added to their Watch Lists. The Watch count is returned in the WatchCount field in the response.

This field will only be returnd to the seller of the item.
Default: false.
ItemID ItemIDType (string) Conditional This field is used to identify the eBay listing by Item ID value.

ItemID is a required input in most cases. SKU can be used instead in certain cases (see the description of SKU). If both ItemID and SKU are specified for items where the inventory tracking method is ItemID, ItemID takes precedence.
SKU SKUType (string) Conditional Retrieves an item that was listed by the user identified in AuthToken and that is being tracked by this SKU.

A SKU (stock keeping unit) is an identifier defined by a seller. Some sellers use SKUs to track complex flows of products and information on the client side. eBay preserves the SKU on the item, enabling you to obtain it before and after an order line item is created. (SKU is recommended as an alternative to ApplicationData.)

In GetItem, SKU can only be used to retrieve one of your own items, where you listed the item by using AddFixedPriceItem or RelistFixedPriceItem, and you set Item.InventoryTrackingMethod to SKU at the time the item was listed. (These criteria are necessary to uniquely identify the listing by a SKU.)

Either ItemID or SKU is required in the request. If both are passed, they must refer to the same item, and that item must have InventoryTrackingMethod set to SKU.
Max length: 50.
TransactionID string Conditional A unique identifier for an order line item. An order line item is created when a buyer commits to purchasing an item.

Since you can change active multiple-quantity fixed-price listings even after one of the items has been purchased, the TransactionID is associated with a snapshot of the item data at the time of the purchase.

After one item in a multi-quantity listing has been sold, sellers can not change the values in the Title, Primary Category, Secondary Category, Listing Duration, and Listing Type fields. However, all other fields are editable.

Specifying a TransactionID in the GetItem request allows you to retrieve a snapshot of the listing as it was when the order line item was created.

The TransactionID value for auction listings is always 0 since there can be only one winning bidder/one sale for an auction listing.
VariationSKU SKUType (string) Conditional Variation-level SKU that uniquely identifes a Variation within the listing identified by ItemID. Only applicable when the seller listed the item with Variation-level SKU (Variation.SKU) values. Retrieves all the usual Item fields, but limits the Variations content to the specified Variation. If not specified, the response includes all Variations.
VariationSpecifics NameValueListArrayType Conditional Name-value pairs that identify one or more Variations within the listing identified by ItemID. Only applicable when the seller listed the item with Variations. Retrieves all the usual Item fields, but limits the Variations content to the specified Variation(s). If the specified pairs do not match any Variation, eBay returns all Variations.

To retrieve only one variation, specify the full set of name/value pairs that match all the name-value pairs of one Variation.

To retrieve multiple variations (using a wildcard), specify one or more name/value pairs that partially match the desired variations. For example, if the listing contains Variations for shirts in different colors and sizes, specify Color as Red (and no other name/value pairs) to retrieve all the red shirts in all sizes (but no other colors).
VariationSpecifics
  .NameValueList
NameValueListType Optional,
repeatable: [0..*]
For the AddItem family of calls: Contains the name and value(s) for an Item Specific. Only required when the ItemSpecifics container is specified.

Note: The maximum number of item specifics that may be defined for a listing has increased from 30 to 45.
For the AddFixedPriceItem family of calls: The same NameValueList schema is used for the ItemSpecifics node, the VariationSpecifics node, and the VariationSpecifcsSet node.

If the listing has variations, any name that you use in the VariationSpecifics and VariationSpecificsSet nodes can't be used in the ItemSpecifics node.
When you list with Item Variations:
  • Specify shared Item Specifics (e.g., Brand) in the ItemSpecifics node.
  • Specify up to five VariationSpecifics in each Variation node.
  • Specify all applicable names with all their supported values in the VariationSpecificSet node.
See the Variation sample in the AddFixedPriceItem call reference for examples.

For PlaceOffer: Required if the item being purchased includes Item Variations.

For AddToWatchList and RemoveFromWatchList: The ItemID value of the multiple-variation listing and the name-value pair to identify each variation in the listing are required.

Note: As of August 30, 2018, California will require sellers to display a Proposition 65 warning on online retail sites if products contain chemicals and/or substances that may impact the health of California buyers. This requirement is applicable to most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. The warning message can be customized by the seller, but should contain the following basic information:
  • The name of at least one listed chemical that prompted the warning
  • Text stating that the product 'can expose you to' the chemical(s) in the product
  • The URL for OEHHA's new Proposition 65 warnings website, which is www.P65Warnings.ca.gov
Unlike standard item specifics that allow a maximum of 65 characters in the Value field, the matching value for the 'California Prop 65 Warning' item specific allows up to 800 characters of text. When a seller passes in this item specific, eBay will automatically insert a warning symbol icon for the listing.

VariationSpecifics
  .NameValueList.Name
string Optional Depending on the call and context, this value is either a name of an Item/Variation Specific, or a Parts Compatibility name.

For the AddItem and AddFixedPriceItem families of calls: In the Item.ItemSpecifics context, the value in this field will either be the name of a required/recommended/optional item specific name for the category, or it may be a seller's customized item specific name.

For the AddFixedPriceItem family of calls: In the Compatibility.NameValueList context, this value is a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: For required and recommended item specifics that are returned in the getItemAspectsForCategory method of the Taxonomy API, the seller should pass in the name of these item specifics just as they are shown in the getItemAspectsForCategory response. Similarly, for catalog-enabled categories, the seller should pass in the name of instance aspects just as they are shown in the getItemAspectsForCategory response. Instance aspects are additional details unique to a specific item or listing that a seller can include along with the product aspects that are already defined in the eBay catalog product associated with the listing. Instance aspects common to many catalog-enabled categories include 'Bundle Description' and 'Modification Description'. eBay US sellers who ship to California are required to pass in a 'California Prop 65 Warning' item specific if the item in the listing contains one or more chemicals known to be harmful to human health. This item specific is passed at the listing level for both single-variation and multiple-variation listings. The 'California Prop 65 Warning' is considered an instance specific because it will be retained on the listing even when the seller lists using an eBay catalog product. The 'California Prop 65 Warning' may be applicable in most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. Note: If Brand and MPN (Manufacturer Part Number) are being used to identify product variations in a multiple-variation listing, the Brand must be specified at the item level (ItemSpecifics container) and the MPN for each product variation must be specified at the variation level (VariationSpecifics container). The Brand name must be the same for all variations within a single listing.
Max length: 65.
VariationSpecifics
  .NameValueList.Value
string Optional,
repeatable: [0..*]
Depending on the call and context, this value is either the value of an Item/Variation Specific, a Parts Compatibility value, or a product identifier.

For the AddItem family of calls: Multiple values can only be specified for an Item Specific if the itemToAspectCardinality field of the getItemAspectsForCategory method shows a value of MULTI. If an item specific only supports a single value, only the first item specific value specified in the request will be used.

For the Compatibility.NameValueList context, this is the corresponding value of a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: The standard maximum length for the value of an item specific is 65, but the maximum allowed length increases for instance aspects such as 'Bundle Description' and 'Modification Description'. For item specifics with max lengths greater than 65, the actual max length will be returned in a corresponding aspectMaxLength field. The maximum allowed length for the new 'California Prop 65 Warning' item specific is 800 characters. For more information about the 'California Prop 65 Warning' item specific, see the ItemSpecifics.NameValueList field description.
Max length: 65 (but longer for some instance aspects, including 800 for 'California Prop 65 Warning').
Standard Input Fields  
DetailLevel DetailLevelCodeType Optional,
repeatable: [0..*]
Detail levels are instructions that define standard subsets of data to return for particular data components (e.g., each Item, Transaction, or User) within the response payload. For example, a particular detail level might cause the response to include buyer-related data in every result (e.g., for every Item), but no seller-related data.

Specifying a detail level is like using a predefined attribute list in the SELECT clause of an SQL query. Use the DetailLevel element to specify the required detail level that the client application needs pertaining to the data components that are applicable to the request.

The DetailLevelCodeType defines the global list of available detail levels for all request types. Most request types support certain detail levels or none at all. If you pass a detail level that exists in the schema but that isn't valid for a particular request, eBay ignores it and processes the request without it.

For each request type, see the detail level tables in the Input/Output Reference to determine which detail levels are applicable and which elements are returned for each applicable detail level.

Note that DetailLevel is required input for GetMyMessages.

With GetSellerList and other calls that retrieve large data sets, please avoid using ReturnAll when possible. For example, if you use GetSellerList, use GranularityLevel instead, or use GetSellerEvents. If you do use 'ReturnAll' with GetSellerList, use a small Pagination.EntriesPerPage value and a narrow EndTimeFrom/EndTimeTo date range for better performance.

Applicable values:

ItemReturnAttributes
(in) For GetItem, returns Item Specifics and Pre-filled Item Information, if any. Also see the description of Item.ProductListingDetails for GetItem.
ItemReturnDescription
(in) Returns the description, plus the ListingDesigner node and some additional information if applicable
ReturnAll
(in) Returns all available data. With GetSellerList and other calls that retrieve large data sets, please avoid using ReturnAll when possible. For example, if you use GetSellerList, use a GranularityLevel or use the GetSellerEvents call instead. If you use ReturnAll with GetSellerList, use a small EntriesPerPage value and a short EndTimeFrom/EndTimeTo range for better performance.

(Not all values in DetailLevelCodeType apply to this field.)
ErrorLanguage string Optional Use ErrorLanguage to return error strings for the call in a different language from the language commonly associated with the site that the requesting user is registered with. Below are some examples from different countries.

ID Country
en_AU Australia
de_AT Austria
nl_BE Belgium (Dutch)
fr_BE Belgium (French)
en_CA Canada
fr_CA Canada (French)
zh_CN China
fr_FR France
de_DE Germany
zh_HK Hong Kong
en_IN India
en_IE Ireland
it_IT Italy
nl_NL Netherlands
en_SG Singapore
es_ES Spain
de_CH Switzerland
en_GB United Kingdom
en_US United States
MessageID string Optional Most Trading API calls support a MessageID element in the request and a CorrelationID element in the response. If you pass in a MessageID in a request, the same value will be returned in the CorrelationID field in the response. Pairing these values can help you track and confirm that a response is returned for every request and to match specific responses to specific requests. If you do not pass a MessageID value in the request, CorrelationID is not returned.

Note: GetCategories is designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, the MessageID and CorrelationID fields aren't applicable. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, MessageID and CorrelationID are applicable.
OutputSelector string Optional,
repeatable: [0..*]
You can use the OutputSelector field to restrict the data returned by a call. This field can make the call response easier to manage, especially when a large payload is returned. If you use the OutputSelector field, the output data will only include the field(s) you specified in the request, as well as all of its child fields (if a field is a container) and its parent fields (if any). Note that it is possible that a field included through an OutputSelector field may still not be returned if it is not applicable, or if it is not found based on other criteria set up in the request payload.

For example, if you are using GetItem and you only want to retrieve the URL of the View Item page (emitted in ViewItemURL field) and the item's Buy It Now price (emitted in BuyItNowPrice field), you would include two separate OutputSelector fields and set the value for each one as ViewItemURL and BuyItNowPrice as in the following example:

 If the following output selectors are used: 

...
<OutputSelector>ViewItemURL</OutputSelector>
<OutputSelector>BuyItNowPrice</OutputSelector>

...

...the response might look like the following

<Item>
<BuyItNowPrice currencyID="USD">0.0</BuyItNowPrice>
<ListingDetails>
<ViewItemURL>http://www.ebay.com/itm/Tag-Heuer-Mens-Watch/182879833261</ViewItemURL>
</ListingDetails>
</Item>

See OutputSelector.

Version string Conditional The version number of the API code that you are programming against (e.g., 1149). The version you specify for a call has these basic effects:
  • It indicates the version of the code lists and other data that eBay should use to process your request.
  • It indicates the schema version you are using.
You need to use a version that is greater than or equal to the lowest supported version.
For the SOAP API: If you are using the SOAP API, this field is required. Specify the version of the WSDL your application is using.

For the XML API: If you are using the XML API, this field has no effect. Instead, specify the version in the X-EBAY-API-COMPATIBILITY-LEVEL HTTP header. (If you specify Version in the body of an XML API request and it is different from the value in the HTTP header, eBay returns an informational warning that the value in the HTTP header was used instead.)

See:
    HTTP headers
    eBay Schema Versioning Strategy
    Lowest Supported Version

WarningLevel WarningLevelCodeType Optional Controls whether or not to return warnings when the application passes unrecognized or deprecated elements in a request.

An unrecognized element is one that is not defined in any supported version of the schema. Schema element names are case-sensitive, so using WarningLevel can also help you remove any potential hidden bugs within your application due to incorrect case or spelling in field names before you put your application into the Production environment.

WarningLevel only validates elements; it doesn't validate XML attributes. It also doesn't control warnings related to user-entered strings or numbers, or warnings for logical errors.

We recommend that you only use this during development and debugging. Do not use this in requests performed in the Production environment.

Applicable values:

High
(in) The WarningLevel value is set to High if the user wishes to receive warnings when the application passes unrecognized or deprecated elements in an API call request. Setting the WarningLevel value to High is not recommended in a production environment. Instead, it should only be used during the development/debugging stage.
Low
(in) The WarningLevel value is set to Low if the user does not wish to receive warnings when the application passes unrecognized or deprecated elements in an API call request. This is the default value if WarningLevel is not specified in the call request.

See Warning Level.



Output

See also Samples.

The box below lists all fields that might be returned in the response. To learn more about an individual field or its type, click its name in the box (or scroll down to find it in the table below the box).

See also the Deprecated Objects link above. Fields presented in this color are deprecated, and fields presented in this color are not returned (or soon will not be returned) or are not operational (or soon will be non-operational).

<?xml version="1.0" encoding="utf-8"?>
<GetItemResponse xmlns="urn:ebay:apis:eBLBaseComponents">
  <!-- Call-specific Output Fields -->
  <Item> ItemType
    <ApplicationData> string </ApplicationData>
    <ApplyBuyerProtection> BuyerProtectionDetailsType
      <BuyerProtectionSource> BuyerProtectionSourceCodeType </BuyerProtectionSource>
      <BuyerProtectionStatus> BuyerProtectionCodeType </BuyerProtectionStatus>
    </ApplyBuyerProtection>
    <AutoPay> boolean </AutoPay>
    <AvailableForPickupDropOff> boolean </AvailableForPickupDropOff>
    <BestOfferDetails> BestOfferDetailsType
      <BestOfferCount> int </BestOfferCount>
      <BestOfferEnabled> boolean </BestOfferEnabled>
    </BestOfferDetails>
    <BusinessSellerDetails> BusinessSellerDetailsType
      <AdditionalContactInformation> string </AdditionalContactInformation>
      <Address> AddressType
        <FirstName> string </FirstName>
        <LastName> string </LastName>
      </Address>
      <Email> string </Email>
      <Fax> string </Fax>
      <LegalInvoice> boolean </LegalInvoice>
      <TermsAndConditions> string </TermsAndConditions>
      <TradeRegistrationNumber> string </TradeRegistrationNumber>
      <VATDetails> VATDetailsType
        <BusinessSeller> boolean </BusinessSeller>
        <RestrictedToBusiness> boolean </RestrictedToBusiness>
        <VATID> string </VATID>
        <VATPercent> float </VATPercent>
        <VATSite> string </VATSite>
      </VATDetails>
    </BusinessSellerDetails>
    <BuyerGuaranteePrice currencyID="CurrencyCodeType"> AmountType (double) </BuyerGuaranteePrice>
    <BuyerProtection> BuyerProtectionCodeType </BuyerProtection>
    <BuyerRequirementDetails> BuyerRequirementDetailsType
      <MaximumItemRequirements> MaximumItemRequirementsType
        <MaximumItemCount> int </MaximumItemCount>
        <MinimumFeedbackScore> int </MinimumFeedbackScore>
      </MaximumItemRequirements>
      <MaximumUnpaidItemStrikesInfo> MaximumUnpaidItemStrikesInfoType
        <Count> int </Count>
        <Period> PeriodCodeType </Period>
      </MaximumUnpaidItemStrikesInfo>
      <ShipToRegistrationCountry> boolean </ShipToRegistrationCountry>
      <ZeroFeedbackScore> boolean </ZeroFeedbackScore>
    </BuyerRequirementDetails>
    <BuyerResponsibleForShipping> boolean </BuyerResponsibleForShipping>
    <BuyItNowPrice currencyID="CurrencyCodeType"> AmountType (double) </BuyItNowPrice>
    <Charity> CharityType
      <CharityID> string </CharityID>
      <CharityName> string </CharityName>
      <DonationPercent> float </DonationPercent>
      <LogoURL> string </LogoURL>
      <Mission> string </Mission>
      <Status> CharityStatusCodeType </Status>
    </Charity>
    <ConditionDefinition> string </ConditionDefinition>
    <ConditionDescriptors> ConditionDescriptorsType
      <ConditionDescriptor> ConditionDescriptorType
        <AdditionalInfo> string </AdditionalInfo>
        <Name> string </Name>
        <Value> string </Value>
        <!-- ... more Value values allowed here ... -->
      </ConditionDescriptor>
      <!-- ... more ConditionDescriptor nodes allowed here ... -->
    </ConditionDescriptors>
    <ConditionDisplayName> string </ConditionDisplayName>
    <ConditionID> int </ConditionID>
    <Country> CountryCodeType </Country>
    <CrossBorderTrade> string </CrossBorderTrade>
    <!-- ... more CrossBorderTrade values allowed here ... -->
    <Currency> CurrencyCodeType </Currency>
    <Description> string </Description>
    <DigitalGoodInfo> DigitalGoodInfoType
      <DigitalDelivery> boolean </DigitalDelivery>
    </DigitalGoodInfo>
    <DisableBuyerRequirements> boolean </DisableBuyerRequirements>
    <DiscountPriceInfo> DiscountPriceInfoType
      <MadeForOutletComparisonPrice currencyID="CurrencyCodeType"> AmountType (double) </MadeForOutletComparisonPrice>
      <MinimumAdvertisedPrice currencyID="CurrencyCodeType"> AmountType (double) </MinimumAdvertisedPrice>
      <MinimumAdvertisedPriceExposure> MinimumAdvertisedPriceExposureCodeType </MinimumAdvertisedPriceExposure>
      <OriginalRetailPrice currencyID="CurrencyCodeType"> AmountType (double) </OriginalRetailPrice>
      <PricingTreatment> PricingTreatmentCodeType </PricingTreatment>
      <SoldOffeBay> boolean </SoldOffeBay>
      <SoldOneBay> boolean </SoldOneBay>
    </DiscountPriceInfo>
    <DispatchTimeMax> int </DispatchTimeMax>
    <eBayPlus> boolean </eBayPlus>
    <eBayPlusEligible> boolean </eBayPlusEligible>
    <EligibleForPickupDropOff> boolean </EligibleForPickupDropOff>
    <eMailDeliveryAvailable> boolean </eMailDeliveryAvailable>
    <ExtendedProducerResponsibility> ExtendedProducerResponsibilityType
      <EcoParticipationFee currencyID="CurrencyCodeType"> AmountType (double) </EcoParticipationFee>
    </ExtendedProducerResponsibility>
    <ExtendedSellerContactDetails> ExtendedContactDetailsType
      <ClassifiedAdContactByEmailEnabled> boolean </ClassifiedAdContactByEmailEnabled>
      <ContactHoursDetails> ContactHoursDetailsType
        <Hours1AnyTime> boolean </Hours1AnyTime>
        <Hours1Days> DaysCodeType </Hours1Days>
        <Hours1From> time </Hours1From>
        <Hours1To> time </Hours1To>
        <Hours2AnyTime> boolean </Hours2AnyTime>
        <Hours2Days> DaysCodeType </Hours2Days>
        <Hours2From> time </Hours2From>
        <Hours2To> time </Hours2To>
        <TimeZoneID> string </TimeZoneID>
      </ContactHoursDetails>
    </ExtendedSellerContactDetails>
    <FreeAddedCategory> CategoryType
      <CategoryID> string </CategoryID>
      <CategoryName> string </CategoryName>
    </FreeAddedCategory>
    <HideFromSearch> boolean </HideFromSearch>
    <IgnoreQuantity> boolean </IgnoreQuantity>
    <IntegratedMerchantCreditCardEnabled> boolean </IntegratedMerchantCreditCardEnabled>
    <InventoryTrackingMethod> InventoryTrackingMethodCodeType </InventoryTrackingMethod>
    <IsIntermediatedShippingEligible> boolean </IsIntermediatedShippingEligible>
    <IsItemEMSEligible> boolean </IsItemEMSEligible>
    <IsSecureDescription> boolean </IsSecureDescription>
    <ItemCompatibilityCount> int </ItemCompatibilityCount>
    <ItemCompatibilityList> ItemCompatibilityListType
      <Compatibility> ItemCompatibilityType
        <CompatibilityNotes> string </CompatibilityNotes>
        <NameValueList> NameValueListType
          <Name> string </Name>
          <Source> ItemSpecificSourceCodeType </Source>
          <Value> string </Value>
          <!-- ... more Value values allowed here ... -->
        </NameValueList>
        <!-- ... more NameValueList nodes allowed here ... -->
      </Compatibility>
      <!-- ... more Compatibility nodes allowed here ... -->
    </ItemCompatibilityList>
    <ItemID> ItemIDType (string) </ItemID>
    <ItemPolicyViolation> ItemPolicyViolationType
      <PolicyID> long </PolicyID>
      <PolicyText> string </PolicyText>
    </ItemPolicyViolation>
    <ItemSpecifics> NameValueListArrayType
      <NameValueList> NameValueListType
        <Name> string </Name>
        <Source> ItemSpecificSourceCodeType </Source>
        <Value> string </Value>
        <!-- ... more Value values allowed here ... -->
      </NameValueList>
      <!-- ... more NameValueList nodes allowed here ... -->
    </ItemSpecifics>
    <ListingDetails> ListingDetailsType
      <Adult> boolean </Adult>
      <BestOfferAutoAcceptPrice currencyID="CurrencyCodeType"> AmountType (double) </BestOfferAutoAcceptPrice>
      <BindingAuction> boolean </BindingAuction>
      <BuyItNowAvailable> boolean </BuyItNowAvailable>
      <CheckoutEnabled> boolean </CheckoutEnabled>
      <ConvertedBuyItNowPrice currencyID="CurrencyCodeType"> AmountType (double) </ConvertedBuyItNowPrice>
      <ConvertedReservePrice currencyID="CurrencyCodeType"> AmountType (double) </ConvertedReservePrice>
      <ConvertedStartPrice currencyID="CurrencyCodeType"> AmountType (double) </ConvertedStartPrice>
      <EndingReason> EndReasonCodeType </EndingReason>
      <EndTime> dateTime </EndTime>
      <HasPublicMessages> boolean </HasPublicMessages>
      <HasReservePrice> boolean </HasReservePrice>
      <HasUnansweredQuestions> boolean </HasUnansweredQuestions>
      <MinimumBestOfferPrice currencyID="CurrencyCodeType"> AmountType (double) </MinimumBestOfferPrice>
      <RelistedItemID> ItemIDType (string) </RelistedItemID>
      <SecondChanceOriginalItemID> ItemIDType (string) </SecondChanceOriginalItemID>
      <StartTime> dateTime </StartTime>
      <TCROriginalItemID> ItemIDType (string) </TCROriginalItemID>
      <ViewItemURL> anyURI </ViewItemURL>
      <ViewItemURLForNaturalSearch> anyURI </ViewItemURLForNaturalSearch>
    </ListingDetails>
    <ListingDuration> token </ListingDuration>
    <ListingEnhancement> ListingEnhancementsCodeType </ListingEnhancement>
    <!-- ... more ListingEnhancement values allowed here ... -->
    <ListingSubtype2> ListingSubtypeCodeType </ListingSubtype2>
    <ListingType> ListingTypeCodeType </ListingType>
    <Location> string </Location>
    <LocationDefaulted> boolean </LocationDefaulted>
    <LotSize> int </LotSize>
    <MechanicalCheckAccepted> boolean </MechanicalCheckAccepted>
    <PaymentAllowedSite> SiteCodeType </PaymentAllowedSite>
    <!-- ... more PaymentAllowedSite values allowed here ... -->
    <PaymentDetails> PaymentDetailsType
      <DaysToFullPayment> int </DaysToFullPayment>
      <DepositAmount currencyID="CurrencyCodeType"> AmountType (double) </DepositAmount>
      <DepositType> DepositTypeCodeType </DepositType>
      <HoursToDeposit> int </HoursToDeposit>
    </PaymentDetails>
    <PaymentMethods> BuyerPaymentMethodCodeType </PaymentMethods>
    <!-- ... more PaymentMethods values allowed here ... -->
    <PayPalEmailAddress> string </PayPalEmailAddress>
    <PickupInStoreDetails> PickupInStoreDetailsType
      <EligibleForPickupDropOff> boolean </EligibleForPickupDropOff>
      <EligibleForPickupInStore> boolean </EligibleForPickupInStore>
    </PickupInStoreDetails>
    <PictureDetails> PictureDetailsType
      <ExtendedPictureDetails> ExtendedPictureDetailsType
        <PictureURLs> PictureURLsType
          <eBayPictureURL> anyURI </eBayPictureURL>
          <!-- ... more eBayPictureURL values allowed here ... -->
          <ExternalPictureURL> anyURI </ExternalPictureURL>
        </PictureURLs>
        <!-- ... more PictureURLs nodes allowed here ... -->
      </ExtendedPictureDetails>
      <ExternalPictureURL> anyURI </ExternalPictureURL>
      <GalleryErrorInfo> string </GalleryErrorInfo>
      <GalleryStatus> GalleryStatusCodeType </GalleryStatus>
      <GalleryType> GalleryTypeCodeType </GalleryType>
      <PictureSource> PictureSourceCodeType </PictureSource>
      <PictureURL> anyURI </PictureURL>
      <!-- ... more PictureURL values allowed here ... -->
    </PictureDetails>
    <PostalCode> string </PostalCode>
    <PrimaryCategory> CategoryType
      <CategoryID> string </CategoryID>
      <CategoryName> string </CategoryName>
    </PrimaryCategory>
    <PrivateListing> boolean </PrivateListing>
    <ProductListingDetails> ProductListingDetailsType
      <BrandMPN> BrandMPNType
        <Brand> string </Brand>
        <MPN> string </MPN>
      </BrandMPN>
      <Copyright> string </Copyright>
      <!-- ... more Copyright values allowed here ... -->
      <EAN> string </EAN>
      <IncludeeBayProductDetails> boolean </IncludeeBayProductDetails>
      <IncludeStockPhotoURL> boolean </IncludeStockPhotoURL>
      <ISBN> string </ISBN>
      <ProductReferenceID> string </ProductReferenceID>
      <StockPhotoURL> anyURI </StockPhotoURL>
      <UPC> string </UPC>
      <UseStockPhotoURLAsGallery> boolean </UseStockPhotoURLAsGallery>
    </ProductListingDetails>
    <ProxyItem> boolean </ProxyItem>
    <Quantity> int </Quantity>
    <QuantityAvailableHint> QuantityAvailableHintCodeType </QuantityAvailableHint>
    <QuantityThreshold> int </QuantityThreshold>
    <ReasonHideFromSearch> ReasonHideFromSearchCodeType </ReasonHideFromSearch>
    <Regulatory> RegulatoryType
      <EconomicOperator> EconomicOperatorType
        <CityName> string </CityName>
        <CompanyName> string </CompanyName>
        <Country> CountryCodeType </Country>
        <Email> string </Email>
        <Phone> string </Phone>
        <PostalCode> string </PostalCode>
        <StateOrProvince> string </StateOrProvince>
        <Street1> string </Street1>
        <Street2> string </Street2>
      </EconomicOperator>
      <EnergyEfficiencyLabel> EnergyEfficiencyType
        <ImageDescription> string </ImageDescription>
        <ImageURL> anyURI </ImageURL>
        <ProductInformationsheet> anyURI </ProductInformationsheet>
      </EnergyEfficiencyLabel>
      <Hazmat> HazmatType
        <Component> string </Component>
        <Pictograms> PictogramsType
          <Pictogram> string </Pictogram>
          <!-- ... more Pictogram values allowed here ... -->
        </Pictograms>
        <SignalWord> string </SignalWord>
        <Statements> StatementsType </Statements>
      </Hazmat>
      <RepairScore> double </RepairScore>
    </Regulatory>
    <RelistParentID> long </RelistParentID>
    <ReservePrice currencyID="CurrencyCodeType"> AmountType (double) </ReservePrice>
    <ReturnPolicy> ReturnPolicyType
      <Description> string </Description>
      <InternationalRefundOption> token </InternationalRefundOption>
      <InternationalReturnsAcceptedOption> token </InternationalReturnsAcceptedOption>
      <InternationalReturnsWithinOption> token </InternationalReturnsWithinOption>
      <InternationalShippingCostPaidByOption> token </InternationalShippingCostPaidByOption>
      <Refund> string </Refund>
      <RefundOption> token </RefundOption>
      <ReturnsAccepted> string </ReturnsAccepted>
      <ReturnsAcceptedOption> token </ReturnsAcceptedOption>
      <ReturnsWithin> string </ReturnsWithin>
      <ReturnsWithinOption> token </ReturnsWithinOption>
      <ShippingCostPaidBy> string </ShippingCostPaidBy>
      <ShippingCostPaidByOption> token </ShippingCostPaidByOption>
    </ReturnPolicy>
    <ReviseStatus> ReviseStatusType
      <BuyItNowAdded> boolean </BuyItNowAdded>
      <BuyItNowLowered> boolean </BuyItNowLowered>
      <ItemRevised> boolean </ItemRevised>
      <ReserveLowered> boolean </ReserveLowered>
      <ReserveRemoved> boolean </ReserveRemoved>
    </ReviseStatus>
    <SecondaryCategory> CategoryType
      <CategoryID> string </CategoryID>
      <CategoryName> string </CategoryName>
    </SecondaryCategory>
    <Seller> UserType
      <AboutMePage> boolean </AboutMePage>
      <eBayGoodStanding> boolean </eBayGoodStanding>
      <Email> string </Email>
      <FeedbackPrivate> boolean </FeedbackPrivate>
      <FeedbackRatingStar> FeedbackRatingStarCodeType </FeedbackRatingStar>
      <FeedbackScore> int </FeedbackScore>
      <IDVerified> boolean </IDVerified>
      <NewUser> boolean </NewUser>
      <PositiveFeedbackPercent> float </PositiveFeedbackPercent>
      <RegistrationAddress> AddressType
        <CityName> string </CityName>
        <Country> CountryCodeType </Country>
        <CountryName> string </CountryName>
        <FirstName> string </FirstName>
        <LastName> string </LastName>
        <Name> string </Name>
        <Phone> string </Phone>
        <PostalCode> string </PostalCode>
        <Street> string </Street>
        <Street1> string </Street1>
        <Street2> string </Street2>
      </RegistrationAddress>
      <RegistrationDate> dateTime </RegistrationDate>
      <SellerInfo> SellerType
        <AllowPaymentEdit> boolean </AllowPaymentEdit>
        <BillingCurrency> CurrencyCodeType </BillingCurrency>
        <CheckoutEnabled> boolean </CheckoutEnabled>
        <CIPBankAccountStored> boolean </CIPBankAccountStored>
        <GoodStanding> boolean </GoodStanding>
        <QualifiesForB2BVAT> boolean </QualifiesForB2BVAT>
        <SafePaymentExempt> boolean </SafePaymentExempt>
        <SellerBusinessType> SellerBusinessCodeType </SellerBusinessType>
        <SellerLevel> SellerLevelCodeType </SellerLevel>
        <StoreOwner> boolean </StoreOwner>
        <StoreURL> anyURI </StoreURL>
        <TopRatedSeller> boolean </TopRatedSeller>
      </SellerInfo>
      <Site> SiteCodeType </Site>
      <Status> UserStatusCodeType </Status>
      <UserID> UserIDType (string) </UserID>
      <UserIDChanged> boolean </UserIDChanged>
      <UserIDLastChanged> dateTime </UserIDLastChanged>
      <VATStatus> VATStatusCodeType </VATStatus>
    </Seller>
    <SellerContactDetails> AddressType
      <CompanyName> string </CompanyName>
      <County> string </County>
      <FirstName> string </FirstName>
      <LastName> string </LastName>
      <PhoneAreaOrCityCode> string </PhoneAreaOrCityCode>
      <PhoneCountryCode> CountryCodeType </PhoneCountryCode>
      <PhoneCountryPrefix> string </PhoneCountryPrefix>
      <PhoneLocalNumber> string </PhoneLocalNumber>
      <Street1> string </Street1>
      <Street2> string </Street2>
    </SellerContactDetails>
    <SellerProfiles> SellerProfilesType
      <SellerPaymentProfile> SellerPaymentProfileType
        <PaymentProfileID> long </PaymentProfileID>
        <PaymentProfileName> string </PaymentProfileName>
      </SellerPaymentProfile>
      <SellerReturnProfile> SellerReturnProfileType
        <ReturnProfileID> long </ReturnProfileID>
        <ReturnProfileName> string </ReturnProfileName>
      </SellerReturnProfile>
      <SellerShippingProfile> SellerShippingProfileType
        <ShippingProfileID> long </ShippingProfileID>
        <ShippingProfileName> string </ShippingProfileName>
      </SellerShippingProfile>
    </SellerProfiles>
    <SellerVacationNote> string </SellerVacationNote>
    <SellingStatus> SellingStatusType
      <AdminEnded> boolean </AdminEnded>
      <BidCount> int </BidCount>
      <BidIncrement currencyID="CurrencyCodeType"> AmountType (double) </BidIncrement>
      <ConvertedCurrentPrice currencyID="CurrencyCodeType"> AmountType (double) </ConvertedCurrentPrice>
      <CurrentPrice currencyID="CurrencyCodeType"> AmountType (double) </CurrentPrice>
      <HighBidder> UserType
        <AboutMePage> boolean </AboutMePage>
        <BuyerInfo> BuyerType
          <ShippingAddress> AddressType
            <Country> CountryCodeType </Country>
            <FirstName> string </FirstName>
            <LastName> string </LastName>
            <PostalCode> string </PostalCode>
          </ShippingAddress>
        </BuyerInfo>
        <eBayGoodStanding> boolean </eBayGoodStanding>
        <Email> string </Email>
        <FeedbackPrivate> boolean </FeedbackPrivate>
        <FeedbackRatingStar> FeedbackRatingStarCodeType </FeedbackRatingStar>
        <FeedbackScore> int </FeedbackScore>
        <IDVerified> boolean </IDVerified>
        <NewUser> boolean </NewUser>
        <PositiveFeedbackPercent> float </PositiveFeedbackPercent>
        <RegistrationAddress> AddressType
          <CityName> string </CityName>
          <Country> CountryCodeType </Country>
          <CountryName> string </CountryName>
          <FirstName> string </FirstName>
          <LastName> string </LastName>
          <Name> string </Name>
          <Phone> string </Phone>
          <PostalCode> string </PostalCode>
          <Street> string </Street>
          <Street1> string </Street1>
          <Street2> string </Street2>
        </RegistrationAddress>
        <RegistrationDate> dateTime </RegistrationDate>
        <Site> SiteCodeType </Site>
        <Status> UserStatusCodeType </Status>
        <UserAnonymized> boolean </UserAnonymized>
        <UserID> UserIDType (string) </UserID>
        <UserIDChanged> boolean </UserIDChanged>
        <UserIDLastChanged> dateTime </UserIDLastChanged>
        <VATStatus> VATStatusCodeType </VATStatus>
      </HighBidder>
      <LeadCount> int </LeadCount>
      <ListingOnHold> boolean </ListingOnHold>
      <ListingStatus> ListingStatusCodeType </ListingStatus>
      <MinimumToBid currencyID="CurrencyCodeType"> AmountType (double) </MinimumToBid>
      <PromotionalSaleDetails> PromotionalSaleDetailsType
        <EndTime> dateTime </EndTime>
        <OriginalPrice currencyID="CurrencyCodeType"> AmountType (double) </OriginalPrice>
        <StartTime> dateTime </StartTime>
      </PromotionalSaleDetails>
      <QuantitySold> int </QuantitySold>
      <QuantitySoldByPickupInStore> int </QuantitySoldByPickupInStore>
      <ReserveMet> boolean </ReserveMet>
      <SecondChanceEligible> boolean </SecondChanceEligible>
      <SoldAsBin> boolean </SoldAsBin>
    </SellingStatus>
    <ShippingDetails> ShippingDetailsType
      <CalculatedShippingDiscount> CalculatedShippingDiscountType
        <DiscountName> DiscountNameCodeType </DiscountName>
        <DiscountProfile> DiscountProfileType
          <DiscountProfileID> string </DiscountProfileID>
          <DiscountProfileName> string </DiscountProfileName>
          <MappedDiscountProfileID> string </MappedDiscountProfileID>
          <WeightOff unit="token" measurementSystem="MeasurementSystemCodeType"> MeasureType (decimal) </WeightOff>
        </DiscountProfile>
        <!-- ... more DiscountProfile nodes allowed here ... -->
      </CalculatedShippingDiscount>
      <CalculatedShippingRate> CalculatedShippingRateType
        <InternationalPackagingHandlingCosts currencyID="CurrencyCodeType"> AmountType (double) </InternationalPackagingHandlingCosts>
        <PackagingHandlingCosts currencyID="CurrencyCodeType"> AmountType (double) </PackagingHandlingCosts>
      </CalculatedShippingRate>
      <ExcludeShipToLocation> string </ExcludeShipToLocation>
      <!-- ... more ExcludeShipToLocation values allowed here ... -->
      <FlatShippingDiscount> FlatShippingDiscountType
        <DiscountName> DiscountNameCodeType </DiscountName>
        <DiscountProfile> DiscountProfileType
          <DiscountProfileID> string </DiscountProfileID>
          <DiscountProfileName> string </DiscountProfileName>
          <EachAdditionalAmount currencyID="CurrencyCodeType"> AmountType (double) </EachAdditionalAmount>
          <EachAdditionalAmountOff currencyID="CurrencyCodeType"> AmountType (double) </EachAdditionalAmountOff>
          <EachAdditionalPercentOff> float </EachAdditionalPercentOff>
        </DiscountProfile>
        <!-- ... more DiscountProfile nodes allowed here ... -->
      </FlatShippingDiscount>
      <GetItFast> boolean </GetItFast>
      <GlobalShipping> boolean </GlobalShipping>
      <InternationalCalculatedShippingDiscount> CalculatedShippingDiscountType
        <DiscountName> DiscountNameCodeType </DiscountName>
        <DiscountProfile> DiscountProfileType
          <DiscountProfileID> string </DiscountProfileID>
          <DiscountProfileName> string </DiscountProfileName>
          <MappedDiscountProfileID> string </MappedDiscountProfileID>
          <WeightOff unit="token" measurementSystem="MeasurementSystemCodeType"> MeasureType (decimal) </WeightOff>
        </DiscountProfile>
        <!-- ... more DiscountProfile nodes allowed here ... -->
      </InternationalCalculatedShippingDiscount>
      <InternationalFlatShippingDiscount> FlatShippingDiscountType
        <DiscountName> DiscountNameCodeType </DiscountName>
        <DiscountProfile> DiscountProfileType
          <DiscountProfileID> string </DiscountProfileID>
          <DiscountProfileName> string </DiscountProfileName>
          <EachAdditionalAmount currencyID="CurrencyCodeType"> AmountType (double) </EachAdditionalAmount>
          <EachAdditionalAmountOff currencyID="CurrencyCodeType"> AmountType (double) </EachAdditionalAmountOff>
          <EachAdditionalPercentOff> float </EachAdditionalPercentOff>
        </DiscountProfile>
        <!-- ... more DiscountProfile nodes allowed here ... -->
      </InternationalFlatShippingDiscount>
      <InternationalPromotionalShippingDiscount> boolean </InternationalPromotionalShippingDiscount>
      <InternationalShippingDiscountProfileID> string </InternationalShippingDiscountProfileID>
      <InternationalShippingServiceOption> InternationalShippingServiceOptionsType
        <ShippingService> token </ShippingService>
        <ShippingServiceAdditionalCost currencyID="CurrencyCodeType"> AmountType (double) </ShippingServiceAdditionalCost>
        <ShippingServiceCost currencyID="CurrencyCodeType"> AmountType (double) </ShippingServiceCost>
        <ShippingServicePriority> int </ShippingServicePriority>
        <ShipToLocation> string </ShipToLocation>
        <!-- ... more ShipToLocation values allowed here ... -->
      </InternationalShippingServiceOption>
      <!-- ... more InternationalShippingServiceOption nodes allowed here ... -->
      <PromotionalShippingDiscount> boolean </PromotionalShippingDiscount>
      <PromotionalShippingDiscountDetails> PromotionalShippingDiscountDetailsType
        <DiscountName> DiscountNameCodeType </DiscountName>
        <ItemCount> int </ItemCount>
        <OrderAmount currencyID="CurrencyCodeType"> AmountType (double) </OrderAmount>
        <ShippingCost currencyID="CurrencyCodeType"> AmountType (double) </ShippingCost>
      </PromotionalShippingDiscountDetails>
      <RateTableDetails> RateTableDetailsType
        <DomesticRateTable> string </DomesticRateTable>
        <DomesticRateTableId> string </DomesticRateTableId>
        <InternationalRateTable> string </InternationalRateTable>
        <InternationalRateTableId> string </InternationalRateTableId>
      </RateTableDetails>
      <SalesTax> SalesTaxType
        <SalesTaxPercent> float </SalesTaxPercent>
        <SalesTaxState> string </SalesTaxState>
        <ShippingIncludedInTax> boolean </ShippingIncludedInTax>
      </SalesTax>
      <SellerExcludeShipToLocationsPreference> boolean </SellerExcludeShipToLocationsPreference>
      <ShippingDiscountProfileID> string </ShippingDiscountProfileID>
      <ShippingServiceOptions> ShippingServiceOptionsType
        <ExpeditedService> boolean </ExpeditedService>
        <FreeShipping> boolean </FreeShipping>
        <ShippingService> token </ShippingService>
        <ShippingServiceAdditionalCost currencyID="CurrencyCodeType"> AmountType (double) </ShippingServiceAdditionalCost>
        <ShippingServiceCost currencyID="CurrencyCodeType"> AmountType (double) </ShippingServiceCost>
        <ShippingServicePriority> int </ShippingServicePriority>
        <ShippingTimeMax> int </ShippingTimeMax>
        <ShippingTimeMin> int </ShippingTimeMin>
      </ShippingServiceOptions>
      <!-- ... more ShippingServiceOptions nodes allowed here ... -->
      <ShippingType> ShippingTypeCodeType </ShippingType>
      <TaxTable> TaxTableType
        <TaxJurisdiction> TaxJurisdictionType
          <JurisdictionID> string </JurisdictionID>
          <SalesTaxPercent> float </SalesTaxPercent>
          <ShippingIncludedInTax> boolean </ShippingIncludedInTax>
        </TaxJurisdiction>
        <!-- ... more TaxJurisdiction nodes allowed here ... -->
      </TaxTable>
      <ThirdPartyCheckout> boolean </ThirdPartyCheckout>
    </ShippingDetails>
    <ShippingPackageDetails> ShipPackageDetailsType
      <PackageDepth unit="token" measurementSystem="MeasurementSystemCodeType"> MeasureType (decimal) </PackageDepth>
      <PackageLength unit="token" measurementSystem="MeasurementSystemCodeType"> MeasureType (decimal) </PackageLength>
      <PackageWidth unit="token" measurementSystem="MeasurementSystemCodeType"> MeasureType (decimal) </PackageWidth>
      <ShippingIrregular> boolean </ShippingIrregular>
      <ShippingPackage> ShippingPackageCodeType </ShippingPackage>
      <WeightMajor unit="token" measurementSystem="MeasurementSystemCodeType"> MeasureType (decimal) </WeightMajor>
      <WeightMinor unit="token" measurementSystem="MeasurementSystemCodeType"> MeasureType (decimal) </WeightMinor>
    </ShippingPackageDetails>
    <ShippingServiceCostOverrideList> ShippingServiceCostOverrideListType
      <ShippingServiceCostOverride> ShippingServiceCostOverrideType
        <ShippingServiceAdditionalCost currencyID="CurrencyCodeType"> AmountType (double) </ShippingServiceAdditionalCost>
        <ShippingServiceCost currencyID="CurrencyCodeType"> AmountType (double) </ShippingServiceCost>
        <ShippingServicePriority> int </ShippingServicePriority>
        <ShippingServiceType> ShippingServiceType </ShippingServiceType>
      </ShippingServiceCostOverride>
      <!-- ... more ShippingServiceCostOverride nodes allowed here ... -->
    </ShippingServiceCostOverrideList>
    <ShipToLocations> string </ShipToLocations>
    <!-- ... more ShipToLocations values allowed here ... -->
    <Site> SiteCodeType </Site>
    <SKU> SKUType (string) </SKU>
    <StartPrice currencyID="CurrencyCodeType"> AmountType (double) </StartPrice>
    <Storefront> StorefrontType
      <StoreCategory2ID> long </StoreCategory2ID>
      <StoreCategoryID> long </StoreCategoryID>
      <StoreURL> anyURI </StoreURL>
    </Storefront>
    <SubTitle> string </SubTitle>
    <TaxCategory> string </TaxCategory>
    <TimeLeft> duration </TimeLeft>
    <Title> string </Title>
    <TopRatedListing> boolean </TopRatedListing>
    <UnitInfo> UnitInfoType
      <UnitQuantity> double </UnitQuantity>
      <UnitType> string </UnitType>
    </UnitInfo>
    <UUID> UUIDType (string) </UUID>
    <Variations> VariationsType
      <Pictures> PicturesType
        <VariationSpecificName> string </VariationSpecificName>
        <VariationSpecificPictureSet> VariationSpecificPictureSetType
          <ExtendedPictureDetails> ExtendedPictureDetailsType
            <PictureURLs> PictureURLsType
              <eBayPictureURL> anyURI </eBayPictureURL>
              <!-- ... more eBayPictureURL values allowed here ... -->
              <ExternalPictureURL> anyURI </ExternalPictureURL>
            </PictureURLs>
            <!-- ... more PictureURLs nodes allowed here ... -->
          </ExtendedPictureDetails>
          <ExternalPictureURL> anyURI </ExternalPictureURL>
          <!-- ... more ExternalPictureURL values allowed here ... -->
          <PictureURL> anyURI </PictureURL>
          <!-- ... more PictureURL values allowed here ... -->
          <VariationSpecificValue> string </VariationSpecificValue>
        </VariationSpecificPictureSet>
        <!-- ... more VariationSpecificPictureSet nodes allowed here ... -->
      </Pictures>
      <Variation> VariationType
        <DiscountPriceInfo> DiscountPriceInfoType
          <MadeForOutletComparisonPrice currencyID="CurrencyCodeType"> AmountType (double) </MadeForOutletComparisonPrice>
          <MinimumAdvertisedPrice currencyID="CurrencyCodeType"> AmountType (double) </MinimumAdvertisedPrice>
          <MinimumAdvertisedPriceExposure> MinimumAdvertisedPriceExposureCodeType </MinimumAdvertisedPriceExposure>
          <OriginalRetailPrice currencyID="CurrencyCodeType"> AmountType (double) </OriginalRetailPrice>
          <PricingTreatment> PricingTreatmentCodeType </PricingTreatment>
          <SoldOffeBay> boolean </SoldOffeBay>
          <SoldOneBay> boolean </SoldOneBay>
        </DiscountPriceInfo>
        <Quantity> int </Quantity>
        <SellingStatus> SellingStatusType
          <AdminEnded> boolean </AdminEnded>
          <BidCount> int </BidCount>
          <BidIncrement currencyID="CurrencyCodeType"> AmountType (double) </BidIncrement>
          <ConvertedCurrentPrice currencyID="CurrencyCodeType"> AmountType (double) </ConvertedCurrentPrice>
          <CurrentPrice currencyID="CurrencyCodeType"> AmountType (double) </CurrentPrice>
          <HighBidder> UserType
            <AboutMePage> boolean </AboutMePage>
            <BuyerInfo> BuyerType
              <ShippingAddress> AddressType
                <Country> CountryCodeType </Country>
                <FirstName> string </FirstName>
                <LastName> string </LastName>
                <PostalCode> string </PostalCode>
              </ShippingAddress>
            </BuyerInfo>
            <eBayGoodStanding> boolean </eBayGoodStanding>
            <Email> string </Email>
            <FeedbackPrivate> boolean </FeedbackPrivate>
            <FeedbackRatingStar> FeedbackRatingStarCodeType </FeedbackRatingStar>
            <FeedbackScore> int </FeedbackScore>
            <IDVerified> boolean </IDVerified>
            <NewUser> boolean </NewUser>
            <PositiveFeedbackPercent> float </PositiveFeedbackPercent>
            <RegistrationAddress> AddressType
              <CityName> string </CityName>
              <Country> CountryCodeType </Country>
              <CountryName> string </CountryName>
              <FirstName> string </FirstName>
              <LastName> string </LastName>
              <Name> string </Name>
              <Phone> string </Phone>
              <PostalCode> string </PostalCode>
              <Street> string </Street>
              <Street1> string </Street1>
              <Street2> string </Street2>
            </RegistrationAddress>
            <RegistrationDate> dateTime </RegistrationDate>
            <Site> SiteCodeType </Site>
            <Status> UserStatusCodeType </Status>
            <UserAnonymized> boolean </UserAnonymized>
            <UserID> UserIDType (string) </UserID>
            <UserIDChanged> boolean </UserIDChanged>
            <UserIDLastChanged> dateTime </UserIDLastChanged>
            <VATStatus> VATStatusCodeType </VATStatus>
          </HighBidder>
          <LeadCount> int </LeadCount>
          <ListingOnHold> boolean </ListingOnHold>
          <ListingStatus> ListingStatusCodeType </ListingStatus>
          <MinimumToBid currencyID="CurrencyCodeType"> AmountType (double) </MinimumToBid>
          <PromotionalSaleDetails> PromotionalSaleDetailsType
            <EndTime> dateTime </EndTime>
            <OriginalPrice currencyID="CurrencyCodeType"> AmountType (double) </OriginalPrice>
            <StartTime> dateTime </StartTime>
          </PromotionalSaleDetails>
          <QuantitySold> int </QuantitySold>
          <QuantitySoldByPickupInStore> int </QuantitySoldByPickupInStore>
          <ReserveMet> boolean </ReserveMet>
          <SecondChanceEligible> boolean </SecondChanceEligible>
          <SoldAsBin> boolean </SoldAsBin>
        </SellingStatus>
        <SKU> SKUType (string) </SKU>
        <StartPrice currencyID="CurrencyCodeType"> AmountType (double) </StartPrice>
        <VariationExtendedProducerResponsibility> VariationExtendedProducerResponsibilityType
          <EcoParticipationFee currencyID="CurrencyCodeType"> AmountType (double) </EcoParticipationFee>
        </VariationExtendedProducerResponsibility>
        <VariationProductListingDetails> VariationProductListingDetailsType
          <EAN> string </EAN>
          <ISBN> string </ISBN>
          <ProductReferenceID> string </ProductReferenceID>
          <UPC> string </UPC>
        </VariationProductListingDetails>
        <VariationSpecifics> NameValueListArrayType
          <NameValueList> NameValueListType
            <Name> string </Name>
            <Source> ItemSpecificSourceCodeType </Source>
            <Value> string </Value>
            <!-- ... more Value values allowed here ... -->
          </NameValueList>
          <!-- ... more NameValueList nodes allowed here ... -->
        </VariationSpecifics>
        <!-- ... more VariationSpecifics nodes allowed here ... -->
      </Variation>
      <!-- ... more Variation nodes allowed here ... -->
      <VariationSpecificsSet> NameValueListArrayType
        <NameValueList> NameValueListType
          <Name> string </Name>
          <Source> ItemSpecificSourceCodeType </Source>
          <Value> string </Value>
          <!-- ... more Value values allowed here ... -->
        </NameValueList>
        <!-- ... more NameValueList nodes allowed here ... -->
      </VariationSpecificsSet>
    </Variations>
    <VATDetails> VATDetailsType
      <VATPercent> float </VATPercent>
    </VATDetails>
    <VideoDetails> VideoDetailsType
      <VideoID> string </VideoID>
      <!-- ... more VideoID values allowed here ... -->
    </VideoDetails>
    <VIN> string </VIN>
    <VINLink> string </VINLink>
    <VRM> string </VRM>
    <VRMLink> string </VRMLink>
    <WatchCount> long </WatchCount>
  </Item>
  <!-- Standard Output Fields -->
  <Ack> AckCodeType </Ack>
  <Build> string </Build>
  <CorrelationID> string </CorrelationID>
  <Errors> ErrorType
    <ErrorClassification> ErrorClassificationCodeType </ErrorClassification>
    <ErrorCode> token </ErrorCode>
    <ErrorParameters ParamID="string"> ErrorParameterType
      <Value> string </Value>
    </ErrorParameters>
    <!-- ... more ErrorParameters nodes allowed here ... -->
    <LongMessage> string </LongMessage>
    <SeverityCode> SeverityCodeType </SeverityCode>
    <ShortMessage> string </ShortMessage>
  </Errors>
  <!-- ... more Errors nodes allowed here ... -->
  <HardExpirationWarning> string </HardExpirationWarning>
  <Timestamp> dateTime </Timestamp>
  <Version> string </Version>
</GetItemResponse>
Return Value Type Occurrence Meaning
Call-specific Output Fields [Jump to standard fields]
Item ItemType Always This container consists of detailed information about the retrieved listing. The amount of information that is returned is partially controlled by the filters that are set in the call request.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ApplicationData string Conditionally Return custom, application-specific data associated with the item. The data you specify is stored by eBay with the item for your own reference, but it is not used by eBay in any way. Use ApplicationData to store special information for yourself, such as a part number. For a SKU in an eBay.com listing, use the SKU element instead. To remove this value when revising or relisting an item, use DeletedField.

Max length: 32.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ApplyBuyerProtection BuyerProtectionDetailsType Conditionally Different Buyer protection schemes and the various status associated with each one of them.
Item.ApplyBuyerProtection
  .BuyerProtectionSource
BuyerProtectionSourceCodeType Conditionally This value indicates the type of buyer protection program applicable for the item. This field is always returned with the ApplyBuyerProtection container.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
eBay
(out) This value indicates that the item is possibly eligible for buyer protection under the eBay Money Back Guarantee program.

Code so that your app gracefully handles any future changes to this list.
Item.ApplyBuyerProtection
  .BuyerProtectionStatus
BuyerProtectionCodeType Conditionally This value indicates the item's eligibility for the buyer protection program listed in the ApplyBuyerProtection.BuyerProtectionSource field. This field is always returned with the ApplyBuyerProtection container.

Applicable values: See BuyerProtectionStatus.
Code so that your app gracefully handles any future changes to this list.
Item.AutoPay boolean Always This field is included and set to if true in an Add/Revise/Relist call if the seller wants to require immediate payment from the buyer. If this field is set to false or not included, the seller is not requesting immediate payment.

Note that this field may be set to true, but that does not necessarily mean that the buyer will be required to pay right away. For example, immediate payment is not currently applicable to auctions items won in a competitive bidding process or to items where the buyer and seller negotiated the price through the Best Offer feature. Immediate payment is also not applicable to listings where the payment happens offline between the buyer and seller.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.AvailableForPickupDropOff boolean Conditionally This field is only returned if true, and indicates that the 'Click and Collect' feature is available for this item. With Click and Collect, buyers are able to purchase from thousands of sellers on the eBay UK, Australia, and Germany sites, and then pick up their order from the nearest 'eBay Collection Point'. Note that an item may be eligible for Click and Collect, but this logistics option will only surface if the prospective buyer is within the vicinity of an 'eBay Collection Point'.

The Click and Collect feature is only available on the eBay UK, Australia, and Germany sites. For more information about Click and Collect, see the Click and Collect home page on the eBay UK site, the Click and Collect home page on the eBay Australia site, or the Click and Collect home page on the eBay Germany site.

Not all categories on the UK, Australia, and Germany sites support Click and Collect listings. To verify if a specific category on these eBay sites support Click and Collect listings, use the GetCategoryFeatures call, passing in one or more CategoryID values and a PickupDropOffEnabled value in the FeatureID field.

Look for a true value in the PickupDropOffEnabled field of the corresponding Category node (match up the CategoryID values if more than one Category IDs were passed in the request).

Note: For Click and Collect eligible sellers, the Click and Collect feature can only be enabled at the account level, and then each of the seller's listings will be automatically evaluated for Click and Collect eligibility.
Item.BestOfferDetails BestOfferDetailsType Conditionally For Add/Revise/Relist/Verify calls: This container is used to enable the Best Offer feature on a listing. Note that the Best Offer feature can be set for auction listings on the US, Canada, UK, Germany, Australia, France, Italy, and Spain marketplaces, but a seller can only use Best Offer or Buy It Now, but not both. Once an auction listing receives a qualifying bid, the Best Offer feature will be turned off and any pending Best Offers or Counteroffers will no longer be valid.

For GetItem and other calls that retrieve item data, this container will include the status (GetMyeBayBuying only) and dollar amount of the latest Best Offer on a fixed-price listing, and the number of Best Offers received for the fixed-price listing.

Note: Best Offer is not available for multi-variation listings.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BestOfferDetails
  .BestOfferCount
int Conditionally The number of Best Offers made for this item, if any. In other words, if there are no Best Offers made, this field will not appear in the response. This field is not applicable to the Add/Revise/Relist calls.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BestOfferDetails
  .BestOfferEnabled
boolean Conditionally This field indicates whether or not the Best Offer feature is enabled for the listing. A seller can enable the Best Offer feature for a listing as long as the category supports the Best Offer feature. To see if an eBay category supports the Best Offer feature, run a GetCategoryFeatures call, including BestOfferEnabled as a FeatureID value in the call request payload.

A listing enabled with the Best Offer feature allows a buyer to bargain with the seller and make a lower-priced offer than the fixed price or the starting bid price for an auction listing. The seller can then decide whether to accept the buyer's Best Offer price or propose a counter offer higher than the Best Offer price, but lower than the fixed price or starting bid price.

Note: The Best Offer feature is now available for auction listings on the following sites: US, Canada, UK, Germany, Australia, France, Italy, and Spain. However, sellers must choose between offering Best Offer or Buy It Now on an auction listing, as both features cannot be enabled on the same auction listing. If an auction listing is enabled with Best Offer, this feature will no longer be applicable once the listing receives its first qualifying bid. Note: Best Offer is not available for multi-variation listings.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails BusinessSellerDetailsType Conditionally Returns the seller's information (in a business card format) if the seller's SellerBusinessCodeType is set to Commercial. This is only applicable for sites where Business Seller options are supported.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .AdditionalContactInformation
string Conditionally This field shows any additional contact for the Business Seller in free-form text. This field is only returned if known and available.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .Address
AddressType Conditionally This field shows the address on file for the Business Seller.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .Address.FirstName
string Conditionally Displays the first name of the seller (in a business card format) if the seller's SellerBusinessCodeType value is Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .Address.LastName
string Conditionally Displays the last name of the seller (in a business card format) if the seller's SellerBusinessCodeType is set to Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .Email
string Conditionally This field shows the email address on file for the Business Seller.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails.Fax string Conditionally This field shows the Fax number on file for the Business Seller. This field is only returned if known and available.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .LegalInvoice
boolean Conditionally This boolean field is returned as true if the Business Seller provides legal invoices to buyers.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .TermsAndConditions
string Conditionally This free-form text field provides the Business Seller's terms and conditions for doing business.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .TradeRegistrationNumber
string Conditionally This field shows the Trade Registration Number for the Business Seller.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .VATDetails
VATDetailsType Conditionally This container provides Value-Added Tax (VAT) details for the Business Seller, including the seller's VAT ID and the VAT percentage rate applicable to the item. VAT is similar to a sales and/or consumption tax, and it is only applicable to sellers selling on European sites.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .VATDetails.BusinessSeller
boolean Conditionally This field should be included in an Add/Revise/Relist call and set to true if the seller is registered on the selling site as a Business Seller. This field must be included and set to true if the RestrictedToBusiness field is also included and set to true. The RestrictedToBusiness field is used by German (Site ID 77), Austrian (Site ID 16), and Swiss (Site ID 193) sellers who wish to restrict sales of their item to other users registered as business users.

This field is returned in 'Get' calls only if set on the listing, and the person making the call owns the listing. However, other Business Seller-related information will be returned to all users in 'Get' calls under the SellerInfo and BusinessSellerDetails containers.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .VATDetails
  .RestrictedToBusiness
boolean Conditionally This field must be included in an Add/Revise/Relist call and set to true if a German (Site ID 77), Austrian (Site ID 16), or Swiss (Site ID 193) seller wishes to restrict sales of their item to other users registered on eBay as business users. If this field is set as true, the BusinessSeller field must also be included and set to true. This feature is not available on any other eBay marketplaces.

This field can be included and set to true only by Business Sellers registered on one of the three sites above, and only if the listing category supports Business-to-Business listings. The GetCategories call can be used by the seller (using one of the Site IDs above) to see which categories support Business-to-Business listings. A B2BVATEnabled boolean field will be returned as true if a listing category supports Business-to-Business listings.

This field is returned in 'Get' calls only if set on the listing, and the person making the call owns the listing. However, other Business Seller-related information will be returned to all users in 'Get' calls under the SellerInfo and BusinessSellerDetails containers.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .VATDetails.VATID
string Conditionally This is the unique VAT identifier associated with the Business Seller's account. This field will only be returned to Business Sellers who own the specified listing.

Non-Business Sellers will not have a VAT identifier associated with their account, so this field will never be returned for those users.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .VATDetails.VATPercent
float Conditionally This container is used in an Add/Revise/Relist call to set the VAT (Value-added Tax) percentage rate that will be charged to buyers when an item is purchased from the listing.

VAT is not applicable to all countries, including the US. Allowed VAT percentage rates can vary by region/country, so sellers should be aware of the rates they are legally required/allowed to charge, and they are responsible for charging the correct VAT rate.

If VAT is charged on a listing, the seller can choose to print an invoice for the buyer that shows the item's net price, the VAT percentage rate, the VAT amount, and the total price.

This field is returned in 'Get' calls only if the listing is subject to VAT.

Note: Previously, up to three digits beyond the decimal point were allowed for this float value, but now a seller can include only one digit beyond the decimal point (e.g. 12.3) when using an Add/Revise/Relist call to set this value. An error will occur if more digits beyond the decimal point are specified.
Min: 0.0. Max: 27.0.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BusinessSellerDetails
  .VATDetails.VATSite
string Conditionally This string value is the Site ID value of the eBay Marketplace where the VAT is applicable and where the seller is registered as a Business Seller.

The eBay sites that support VAT (and their corresponding Site IDs) can be found in the Value-added tax (VAT) topic.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerGuaranteePrice AmountType (double) Conditionally The eBay Best Price Guarantee price. The Best Price Guarantee program is only available on the eBay Australia marketplace.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerGuaranteePrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally The eBay Best Price Guarantee price. The Best Price Guarantee program is only available on the eBay Australia marketplace.

For a list of possible enumeration values, see CurrencyCodeType.
Item.BuyerProtection BuyerProtectionCodeType Conditionally The enumeration value returned in this field indicates whether an item is eligible for the buyer protection.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

Applicable values: See BuyerProtection.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails BuyerRequirementDetailsType Conditionally This container is returned if the seller has applied one or more buyer requirement criteria to the listing. Buyer requirement settings are managed in the Selling Preferences section of the seller's account in My eBay.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails
  .MaximumItemRequirements
MaximumItemRequirementsType Conditionally This container is returned if the seller has set a maximum quantity threshold buyer requirement. With this buyer requirement, a buyer is limited in regards to the quantity of a line item that may be purchased.

This buyer requirement is only applicable to fixed-price listings where multiple quantity is available for purchase.

In addition to setting a maximum quantity threshold buyer requirement, the seller can also choose to apply this threshold to only those prospective buyers who don't meet or exceed the minimum Feedback score threshold.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails
  .MaximumItemRequirements
  .MaximumItemCount
int Conditionally This field indicates the maximum quantity of a line item that one prospective buyer may purchase from the listing.

This buyer requirement is only applicable to fixed-price listings where multiple quantity is available for purchase.

If the MinimumFeedbackScore field is also set/returned, the maximum quantity threshold value will only apply to those prospective buyers who don't meet or exceed the minimum Feedback score threshold returned in that field. If the MinimumFeedbackScore field not set/returned, the maximum quantity threshold value will apply to all prospective buyers.

This field is always returned along with the MaximumItemRequirements container.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails
  .MaximumItemRequirements
  .MinimumFeedbackScore
int Conditionally If this field is returned, it indicates that the seller has set a maximum quantity threshold value, but this maximum quantity threshold value (returned in MaximumItemCount will only apply to those prospective buyers who don't meet or exceed the minimum Feedback score threshold returned in this field. If this field is not returned, the maximum quantity threshold value will apply to all prospective buyers.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails
  .MaximumUnpaidItemStrikesInfo
MaximumUnpaidItemStrikesInfoType Conditionally This container is returned if the seller has enabled a setting to block prospective buyers who have one or more unpaid items and/or buyer-initiated cancellations on their account during a specified time period.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails
  .MaximumUnpaidItemStrikesInfo
  .Count
int Conditionally This integer value indicates the maximum number of unpaid items and/or buyer-initiated cancellations that a prospective buyer is allowed to have during a specified time period (MaximumUnpaidItemStrikesInfo.Period) before being blocked from buying or bidding on the item.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails
  .MaximumUnpaidItemStrikesInfo
  .Period
PeriodCodeType Conditionally This enumerated value defines the length of time over which a prospective buyer's unpaid items and/or buyer-initiated cancellations will be counted. If the prospective buyer's number of unpaid items and/or buyer-initiated cancellations during this defined period exceeds the value set in the MaximumUnpaidItemStrikesInfo.Count field, that prospective buyer is blocked from buying/bidding on the item.

If the Count value is 2, and the specified Period is Days_30 (counting back 30 days from the present day), any prospective buyer that has had three or more unpaid items and/or buyer-initiated cancellations is blocked from buying/bidding on the item.

Applicable values:

CustomCode
(out) This value is reserved for future or internal use.
Days_180
(out) This value indicates that the evaluation period is set back 180 days (approximately 6 months) from the present date.
Days_30
(out) This value indicates that the evaluation period is set back 30 days from the present date.
Days_360
(out) This value indicates that the evaluation period is set back 360 days (approximately 12 months) from the present date.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails
  .ShipToRegistrationCountry
boolean Conditionally This field is returned as true if the seller has enabled the setting to block buyers/bidders who reside (according to their eBay primary shipping address) in countries that are on the seller's ship-to exclusion list.

Default: false.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyerRequirementDetails
  .ZeroFeedbackScore
boolean Conditionally This field is returned as true if the seller has enabled the setting to block buyers/bidders with a feedback score of 0 from buying items.

Default: false.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .BuyerResponsibleForShipping
boolean Conditionally Applicable for listings in vehicle categories on the US eBay Motors site and eBay Canada site. (No business effect if specified for other categories or sites, as the Web site will not display the information to buyers.)
  • If true, the buyer is responsible for vehicle pickup or shipping.
  • If false, specify vehicle shipping arrangements in the item description. (The description can also include vehicle shipping arrangements when this value is true.)
If the item has bids or ends within 12 hours, you cannot modify this flag. Do not specify ShippingDetails.ShippingServiceOptions for vehicle listings.

If true and the listing is on the US eBay Motors site, and you want the listing to be visible on the eBay Canada site, set Item.ShipToLocations to CA.

If true and the listing is on the eBay Canada site, and you want your listing to be visible on the US eBay Motors site, set Item.ShipToLocations to US.


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyItNowPrice AmountType (double) Always This field is only applicable for auction listings. By specifying a 'Buy It Now' price, a seller is allowing prospective buyers the opportunity to purchase the item in the auction listing at this price immediately. When a buyer uses the 'Buy It Now' option to purchase the item, the auction listing will end immediately.

By including this field and specifying a 'Buy It Now' price, the seller is enabling the 'Buy It Now' feature on the auction listing. If the seller includes this field for any other listing type other than an auction, this field and its price will just be ignored.

The price in this field must be at least 30 percent higher than the starting bid price (which is specified in an Add call through the Item.StartPrice field). Once a bid is made on an auction listing, and the bid meets or exceeds the Item.ReservePrice value (if set), the 'Buy It Now' option becomes unavailable, and this field will no longer be applicable. If there is no Reserve Price, the first bid will nullify the 'Buy It Now' option.

Keep in mind that GetItem (and other 'Get' calls that retrieve the Item details) may still return the BuyItNowPrice field for an auction item even if the 'Buy It Now' option is no longer available. Instead, a user should look for the ListingDetails.BuyItNowAvailable boolean field in the GetItem response to determine if the 'Buy It Now' option is still available for the auction item.

Note: For the US site, new eBay sellers are subject to Seller Limits, which limit the quantity of items that may be listed and/or the total cumulative value of these listings. While subject to these selling limits, an eBay seller can use the GetMyeBaySelling call to retrieve both the remaining number of listings they can create and the remaining cumulative value of these listings. These values are shown in the Summary.QuantityLimitRemaining and Summary.AmountLimitRemaining fields in the GetMyeBaySelling response. If a call to add an item or revise an item would result in the exceeding of these limits, the add item or revise item call will fail. These fields will only be returned if the seller is subject to seller limits.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.BuyItNowPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field is only applicable for auction listings. By specifying a 'Buy It Now' price, a seller is allowing prospective buyers the opportunity to purchase the item in the auction listing at this price immediately. When a buyer uses the 'Buy It Now' option to purchase the item, the auction listing will end immediately.

By including this field and specifying a 'Buy It Now' price, the seller is enabling the 'Buy It Now' feature on the auction listing. If the seller includes this field for any other listing type other than an auction, this field and its price will just be ignored.

The price in this field must be at least 30 percent higher than the starting bid price (which is specified in an Add call through the Item.StartPrice field). Once a bid is made on an auction listing, and the bid meets or exceeds the Item.ReservePrice value (if set), the 'Buy It Now' option becomes unavailable, and this field will no longer be applicable. If there is no Reserve Price, the first bid will nullify the 'Buy It Now' option.

Keep in mind that GetItem (and other 'Get' calls that retrieve the Item details) may still return the BuyItNowPrice field for an auction item even if the 'Buy It Now' option is no longer available. Instead, a user should look for the ListingDetails.BuyItNowAvailable boolean field in the GetItem response to determine if the 'Buy It Now' option is still available for the auction item.

Note: For the US site, new eBay sellers are subject to Seller Limits, which limit the quantity of items that may be listed and/or the total cumulative value of these listings. While subject to these selling limits, an eBay seller can use the GetMyeBaySelling call to retrieve both the remaining number of listings they can create and the remaining cumulative value of these listings. These values are shown in the Summary.QuantityLimitRemaining and Summary.AmountLimitRemaining fields in the GetMyeBaySelling response. If a call to add an item or revise an item would result in the exceeding of these limits, the add item or revise item call will fail. These fields will only be returned if the seller is subject to seller limits.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Charity CharityType Conditionally This container identifies the nonprofit organization that will benefit with a percentage of the proceeds from each sale of an item through an auction or fixed-price listing. Charity names and IDs can be found by going to eBay for Charity page and doing a search. The donation percentage can be set in 5 percent increments from 10 percent to 100 percent.

When it comes to revising an auction or fixed-price listing, you can add a benefitting charity (as long as there is at least 12 hours left before end of listing/close of auction), but you cannot remove or change a nonprofit company once one is already established in the original listing.

For Revise calls: The non-profit organization and donation percentage can now be modified in a Revise call as long as there are no active bids on an auction listing, or no pending Best Offers/Counter Offers on a listing.

This container will only be returned in Get calls for charitable listings. Charitable listings are only supported in the US and UK marketplaces.

DetailLevel: ItemReturnDescription, ReturnAll.

See:
    Buying and selling on eBay to benefit nonprofit organizations
    Charitable listings

Item.Charity.CharityID string Conditionally The unique identifier that eBay creates and assigns to each nonprofit organization.

The field is conditionally required in an Add/Revise/Relist call if the seller will be donating a percentage of the sale proceeds to this organization for each sale generated by the listing.

DetailLevel: ItemReturnDescription, ReturnAll.
Item.Charity.CharityName string Conditionally The full name of the nonprofit organization.


Max length: 150.

DetailLevel: ItemReturnDescription, ReturnAll.
Item.Charity.DonationPercent float Conditionally The percentage of the purchase price that the seller chooses to donate to the selected nonprofit organization. This percentage is displayed in the eBay for Charity listing. Possible values: 10.0 to 100.0. The DonationPercent field is required in an Add/Revise/Relist call if the seller will be donating a percentage of the sale proceeds for each sale generated by the listing.

DetailLevel: ItemReturnDescription, ReturnAll.
Item.Charity.LogoURL string Conditionally The full URL to the nonprofit organization's logo image file. This logo image file is the image that is displayed in all eBay listings that benefit that charity. This field is returned as long as it is defined for the nonprofit organization.

DetailLevel: ItemReturnDescription, ReturnAll.
Item.Charity.Mission string Conditionally The stated mission of the nonprofit charity organization. This mission statement is displayed in the eBay for Charity section of the View Item page.


Max length: 511.

DetailLevel: ItemReturnDescription, ReturnAll.
Item.Charity.Status CharityStatusCodeType Conditionally This enumeration value indicates whether or not the nonprofit organization is a valid eBay for Charity organization, and is able to receive proceeds from eBay sales.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
NoLongerValid
(out) The specified nonprofit charity organization is no longer a valid nonprofit charity organization according to the requirements of the PayPal Giving Fund.
Valid
(out) The specified nonprofit charity organization is a valid nonprofit charity organization according to the requirements of the PayPal Giving Fund.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnDescription, ReturnAll.
Item.ConditionDefinition string Conditionally This string value provides more details about the item's condition.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ConditionDescriptors ConditionDescriptorsType Conditionally This container is used in Add/Revise/Relist/Verify listing calls to designate the condition descriptors for the listing. It is also returned in GetItem to indicate the condition descriptors applied to the listing.
Important: For trading card listings in Non-Sport Trading Card Singles (183050), CCG Individual Cards (183454), and Sports Trading Card Singles (261328) categories, Condition ID 2750 can be used to specify the card as a Graded card and Condition ID 4000 can be used to specify the card as an Ungraded card. If either of these condition IDs are used, the seller is required to use the ConditionDescriptors container to provide one or more applicable Condition Descriptor name-value pairs.

Beginning on October 23rd, 2023, trading card listings in the affected categories must either use Condition ID 2750 or Condition ID 4000, and no other item conditions will be accepted. These Condition IDs and the ConditionDescriptors container will be required for all new listings. If not provided after this date, the following calls will fail: AddItem, AddFixedPriceItem, AddItems, VerifyAddItem, and VerifyAddFixedPriceItem.

By January 22, 2024, all existing listings must be modified with either Condition ID 2750 or Condition ID 4000 and applicable ConditionDescriptors name-value pairs. This adds ReviseItem, ReviseFixedPriceItem, RelistItem, RelistFixedPriceItem, and VerifyRelistItem calls to the requirement.
Item.ConditionDescriptors
  .ConditionDescriptor
ConditionDescriptorType Conditionally,
repeatable: [0..*]
This container is used by the seller to provide additional information about the condition of an item in a structured format. Condition descriptors are name-value attributes that can be either closed set or open text inputs.

To retrieve all condition descriptor numeric IDs for a category, use the getItemConditionPolicies method of the Metadata API.
Note: The use of Condition Descriptors is currently only available for the following trading card categories (CategoryID):
  • Non-Sport Trading Card Singles (183050)
  • CCG Individual Cards (183454)
  • Sports Trading Card Singles (261328)
Item.ConditionDescriptors
  .ConditionDescriptor
  .AdditionalInfo
string Conditionally Open text is passed in this field. This text provides additional information about a condition descriptor.

In the case of trading cards, this field houses the optional Certification Number condition descriptor for graded cards.

Max length: 30.
Item.ConditionDescriptors
  .ConditionDescriptor.Name
string Conditionally A numeric ID is passed in this field. This numeric ID maps to the name of a condition descriptor. Condition descriptor name-value pairs provide more information about an item's condition in a structured way.

To retrieve all condition descriptor numeric IDs for a category, use the getItemConditionPolicies method of the Metadata API.

In the case of trading cards, this field is used to provide condition descriptors for a card. For graded cards, the condition descriptors for Grader and Grade are required, while the condition descriptor for Certification Number is optional. For ungraded cards, only the Card Condition condition descriptor is required.
Item.ConditionDescriptors
  .ConditionDescriptor.Value
string Conditionally,
repeatable: [0..*]
A numeric ID is passed in this field. This numeric ID maps to the value associated with a condition descriptor name. Condition descriptor name-value pairs provide more information about an item's condition in a structured way.

To retrieve all condition descriptor numeric IDs for a category, use the getItemConditionPolicies method of the Metadata API.

In the case of trading cards, this field houses the information on the Grader and Grade descriptors of graded cards and the Card Condition descriptor for ungraded cards.
Item.ConditionDisplayName string Conditionally
The human-readable label for the item condition. Display names are localized for the site on which they're listed (not necessarily the site on which they're viewed).

Most categories use the same display name for the same condition ID. Some categories may override the display name based on buyer expectations for items in the category. For example, condition ID 1000 could be called "New" in one category and "New with tags" in another.

Behind the scenes, eBay's search engine uses the ID (not the display name) to determine whether items are new, used, or refurbished.

Only returned when the seller specified ConditionID in their listing.
Note: This field will stop being returned in order management calls on January 31, 2024.
Max length: 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ConditionID int Conditionally This is a numeric identifier for an item's condition. All numeric Condition ID values map to an item condition string value. For example, numeric identifier 1000 maps to New condition.
Important: For trading card listings in Non-Sport Trading Card Singles (183050), CCG Individual Cards (183454), and Sports Trading Card Singles (261328) categories, Condition ID 2750 can be used to specify the card as a Graded card and Condition ID 4000 can be used to specify the card as an Ungraded card. If either of these condition IDs are used, the seller is required to use the ConditionDescriptors container to provide one or more applicable Condition Descriptor name-value pairs. See the ConditionDescriptors field description for more information.

Beginning on October 23rd, 2023, trading card listings in the affected categories must either use Condition ID 2750 or Condition ID 4000, and no other item conditions will be accepted. These Condition IDs and the ConditionDescriptors container will be required for all new listings. If not provided after this date, the following calls will fail: AddItem, AddFixedPriceItem, AddItems, VerifyAddItem, and VerifyAddFixedPriceItem.

By January 22, 2024, all existing listings must be modified with either Condition ID 2750 or Condition ID 4000 and applicable ConditionDescriptors name-value pairs. This adds ReviseItem, ReviseFixedPriceItem, RelistItem, RelistFixedPriceItem, and VerifyRelistItem calls to the requirement.
Most eBay listing categories require an item condition, but a few eBay categories do not (such as Digital Gift Cards or Antiques categories). To verify if the listing category requires an item condition, and if so, what are the supported item condition and ConditionID values, you can call GetCategoryFeatures. In this GetCategoryFeatures call, you'd pass in the listing CategoryID value and two FeatureID fields - one of these fields set to ConditionEnabled, and the other field set to ConditionValues.

In the GetCategoryFeatures response, look at the Category.ConditionEnabled to see if item condition is required for the category. Then look at the Category.ConditionValues container in the response for the full list of Condition IDs that you can pass in through the ConditionID field of an Add/Revise/Relist/Verify call. Note that the Condition.DisplayName value in the response is the actual condition value that will appear in the actual eBay listing.

If you pass in a ConditionID value that is not valid for the category, or if you don't pass in a ConditionID value at all for a category that requires it, the listing request fails.

If you are listing in two categories (using a secondary category), it is the primary listing category that determines which ConditionID values are supported.

For Revise/Relist calls: In most cases, you can change the ConditionID value (if applicable/warranted), with the exception being an auction listing that has one or more bids, or any listing that is scheduled to end in 12 hours or less.

For GetItem: The ConditionID value is always returned if set for the listing. GetItem also returns the item condition string value in the ConditionDisplayName field.

Note: On the US, Canada, UK, Germany, France, Italy, and Australia marketplaces, condition ID 2500 ('Seller Refurbished') can no longer be used in numerous categories. See Category and marketplace support for the eBay Refurbished Program for the full list. In these categories, the 'Seller Refurbished' item condition has been replaced by one of three new refurbished values, which include condition ID 2010 ('Excellent - Refurbished'), condition ID 2020 ('Very Good - Refurbished'), and condition ID 2030 ('Good - Refurbished'). To use any of these new refurbished item conditions, sellers must go through an application and qualification process. Any seller who is not eligible to use these new refurbished item conditions in these three categories will be blocked if they try to create a new listing or revise an existing listing with any of these three new item conditions. Sellers who are not eligible to list with the new refurbished item conditions, will need to use another item condition supported in these categories, such as condition ID 3000 ('Used').

Any seller that is interested in eligibility requirements to list with any refurbished item condition, including condition ID 2000 ('Certified - Refurbished'), should see the eBay Refurbished Program page in Seller Center.
Note: This field will stop being returned in order management calls on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Item conditions
    ConditionValues in GetCategoryFeatures
    Item Condition Look-up Table (and Automatic Mapping)

Item.Country CountryCodeType Always This two-digit enumeration value indicates the country of the seller's registration address. CountryCodeType defines the supported values. The GeteBayDetails call can also be used (include the DetailName field and set its value to CountryDetails) to see the full list of supported country codes.

In an Add/Revise/Relist/Verify call, this field is required.

Applicable values: See Country.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.CrossBorderTrade string Always,
repeatable: [1..*]
This field is used by sellers who want their listing to be returned in the search results for other eBay sites. This feature is currently only supported by the US, UK, eBay Canada, and eBay Ireland sites. See Getting exposure on international sites for full requirements on using this feature. There is a small listing fee for each country specified as a Cross Border Trade country.

US listings that offer shipping to Canada, North America, or worldwide are automatically returned on eBay.ca at no extra charge, so US listings that offer shipping to these locations do not need to specify Canada as a Cross Border Trade country.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Cross-border trading.

Item.Currency CurrencyCodeType Always In an Add/Revise/Relist/Verify call, this required three-digit enumeration value defines the currency associated with the listing site. The item price and all costs passed in the call request will be using this currency. Similarly, the listing fees and other cost-related data will be using this currency. Since the Trading API can only be used for a select number of eBay sites, only a subset of values are supporting when adding/revising/relisting an item. These supported values are discussed in the top section of CurrencyCodeType.

In 'Get' calls, it is possible that any of the values in CurrencyCodeType may appear, as some cost-related fields will show the buyer's currency type.

Applicable values: See Currency.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Description string Always The seller's description of the item. In listing requests, you can submit your description using CDATA if you want to use HTML or XML-reserved characters in the description. However, a seller can not use any active content in their listing description. Active content includes animation or video via JavaScript, Flash, plug-ins, or form actions. All active content will be blocked/removed from a listing. Removing/blocking active content will lead to faster load times of listings, make listings more mobile-friendly, improve SEO performance, and lead to a more secure eBay Marketplace.

Note: To ensure that their listing description is optimized when viewed on mobile devices, sellers should strongly consider using eBay's View Item description summary feature when listing their item. Using HTML div and span tag attributes, this feature allows sellers to customize and fully control the listing description that is displayed for prospective buyers when viewing the item on a mobile device. The listing description on mobile devices is limited to 800 characters, and whenever the listing description exceeds this limit, eBay uses a special algorithm to derive the best possible description within the 800-character limit. However, due to some description content being removed, it is definitely not ideal for the seller, and could possibly lead to a bad buyer experience and a Significantly not as described (SNAD) case, since the buyer may not get complete details on the item. See the eBay help page for more details on using the HTML div and span tags, and for more tips on creating listings that are mobile-friendly, see this Best practices document.
In the listing description, sellers are only allowed to provide links to product videos, freight shipping services, or other legally required information, and when providing these links in the listing description, the secure 'https' protocol must be used instead of 'http'. In addition, any valid links to sites outside of eBay should use the target="_blank" attribute in the a href tag so a new browser window will be loaded when the link is clicked instead of buyers being redirected off of eBay. For more information on using links in the listing description, see eBay's Links policy. For more information about the stronger security standards that eBay is using, see the Use secure HTTPS for enhanced browser security topic in the 2018 Fall Seller Update. The getListingViolations method of the Compliance API can be used to see if any of the seller's active listings are not 'HTTPS' compliant.

If you embed pictures in the description (by using IMG tags) instead of using PictureURL, but you want a camera icon to appear in search and listing pages, specify the following null-image URL in the PictureURL field: https://pics.ebay.com/aw/pics/dot_clear.gif. See Add pictures in the Trading API User Guide.

This field is conditionally required for all listings. The exception is when the seller specifies a product identifier, such as a GTIN or ePID, through the ProductListingDetails container and a product match is found in the eBay product catalog. If a matching product is found in the eBay product catalog, the item description will be created automatically (as long as the ProductListingDetails.IncludeeBayProductDetails value is true).

Max length: 500000 (some sites may allow more, but the exact number may vary).

DetailLevel: ItemReturnDescription, ReturnAll.

See IncludeeBayProductDetails.

Item.DigitalGoodInfo DigitalGoodInfoType Conditionally This container is used in Add/Revise/Relist/Verify listing calls to designate the listing as a digital gift card listing. It is also returned in GetItem to indicate that the listing contains a digital gift card.
Item.DigitalGoodInfo
  .DigitalDelivery
boolean Conditionally This field must be included in the request and set to true if the seller plans to list a digital gift card in a category that supports digital gift cards.

To verify if a specific category on a specific eBay site supports digital gift card listings, use the GetCategoryFeatures call, passing in a CategoryID value and a DigitalGoodDeliveryEnabled value in the FeatureID field. Look for a true value in the DigitalGoodDeliveryEnabled field of the corresponding Category node (match up the CategoryID values if more than one Category IDs were passed in the request).
Item.DisableBuyerRequirements boolean Conditionally This field can be included and set to true in an Add or Revise call if the seller wishes to disable all buyer requirements (that are set in the seller's account) for the listing. (from Item.BuyerRequirementDetails or Buyer requirements preferences in My eBay) are ignored.

This field will only be returned in 'Get' calls if true.
Default: false.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DiscountPriceInfo DiscountPriceInfoType Conditionally This container provides information for an item that has a Strikethrough Price (STP) or a Minimum Advertised Price (MAP) discount pricing treatment. STP and MAP apply only to fixed-price listings. STP is available on the US, eBay Motors, UK, Germany, Canada (English and French), France, Italy, Spain, and Ireland sites, while MAP is available only on the US site.

Discount pricing is available to qualified sellers (and their associated developers) who participate in the Discount Pricing Program. Once qualified, sellers receive a 'special account flag' (SAF) that allows them to apply Discount Pricing to both single-variation and multi-variation items. STP is intended for eBay partners and their sellers only.

As a seller listing Discount Price items, you are required to maintain records of your discount pricing in the event you are called upon to substantiate your item pricing.

For AddFixedPriceItem, RelistFixedPriceItem, ReviseFixedPriceItem, and VerifyAddFixedPriceItem: If you are listing variations (MSKU items), use Variation.DiscountPriceInfo for each variation.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DiscountPriceInfo
  .MadeForOutletComparisonPrice
AmountType (double) Conditionally Applicable only if the item was specifically made for sale through dedicated eBay outlet pages (e.g., eBay Fashion Outlet).

The comparison price is the price of a comparable product sold through non-outlet channels on eBay (or elsewhere), or not specifically made for the outlet.

In fashion, a "comparable" product shares the same design, but is not considered an identical product. Some products are specifically made for outlets, and may have a different SKU than the "comparable" product. These made-for-outlet products may be manufactured in a different place, with different materials, or according to different specifications (i.e. different stitch pattern, seam reinforcement, button quality, etc.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DiscountPriceInfo
  .MadeForOutletComparisonPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Applicable only if the item was specifically made for sale through dedicated eBay outlet pages (e.g., eBay Fashion Outlet).

The comparison price is the price of a comparable product sold through non-outlet channels on eBay (or elsewhere), or not specifically made for the outlet.

In fashion, a "comparable" product shares the same design, but is not considered an identical product. Some products are specifically made for outlets, and may have a different SKU than the "comparable" product. These made-for-outlet products may be manufactured in a different place, with different materials, or according to different specifications (i.e. different stitch pattern, seam reinforcement, button quality, etc.)

For a list of possible enumeration values, see CurrencyCodeType.
Item.DiscountPriceInfo
  .MinimumAdvertisedPrice
AmountType (double) Conditionally Minimum Advertised Price (MAP) is an agreement between suppliers (or manufacturers (OEM)) and the retailers (sellers) stipulating the lowest price an item is allowed to be advertised at. Sellers can offer prices below MAP by means of other discounts. This only applies to fixed-price listings and auction listings with the Buy It Now option.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DiscountPriceInfo
  .MinimumAdvertisedPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Minimum Advertised Price (MAP) is an agreement between suppliers (or manufacturers (OEM)) and the retailers (sellers) stipulating the lowest price an item is allowed to be advertised at. Sellers can offer prices below MAP by means of other discounts. This only applies to fixed-price listings and auction listings with the Buy It Now option.

For a list of possible enumeration values, see CurrencyCodeType.
Item.DiscountPriceInfo
  .MinimumAdvertisedPriceExposure
MinimumAdvertisedPriceExposureCodeType Conditionally For MinimumAdvertisedPrice (MAP) listings only. A seller cannot show the actual discounted price on eBay's View Item page. Instead, the buyer can either click on a pop-up on eBay's View Item page, or the discount price will be shown during checkout.

Applicable values:

CustomCode
(in/out) Reserved for future use.
DuringCheckout
(in/out) This enumeration value indicates that the discounted price will only be shown to the buyer once the buyer reaches the eBay Checkout page. To enable this pricing treatment when adding/revising/relisting an item, include the DiscountPriceInfo.MinimumAdvertisedPriceExposure field in an Add/Revise/Relist calls and set its value to DuringCheckout.
None
(in/out) The value None is no longer valid. If provided in the request, it will be mapped to PreCheckout.
PreCheckout
(in/out) This enumeration value indicates that the buyer must add the item to his/her cart before the discounted price can be displayed. To enable this pricing treatment when adding/revising/relisting an item, include the DiscountPriceInfo.MinimumAdvertisedPriceExposure field in an Add/Revise/Relist calls and set its value to PreCheckout.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DiscountPriceInfo
  .OriginalRetailPrice
AmountType (double) Conditionally The actual retail price set by the manufacturer (OEM). eBay does not maintain or validate the OriginalRetailPrice supplied by the seller. OriginalRetailPrice should always be more than StartPrice. Compare the StartPrice/BuyItNowPrice to OriginalRetailPrice to determine the amount of savings to the buyer.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DiscountPriceInfo
  .OriginalRetailPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally The actual retail price set by the manufacturer (OEM). eBay does not maintain or validate the OriginalRetailPrice supplied by the seller. OriginalRetailPrice should always be more than StartPrice. Compare the StartPrice/BuyItNowPrice to OriginalRetailPrice to determine the amount of savings to the buyer.

For a list of possible enumeration values, see CurrencyCodeType.
Item.DiscountPriceInfo
  .PricingTreatment
PricingTreatmentCodeType Conditionally Based on OriginalRetailPrice, MinimumAdvertisedPrice, and StartPrice values, eBay identifies whether the listing falls under MAP or STP (aka OriginalRetailPrice). GetItem returns this for items listed with one of these discount pricing treatments. GetSellerList returns the DiscountPriceInfo container. This field is not applicable for Add/Revise/Relist calls.
Default: false.

Applicable values:

CustomCode
(out) Reserved for future use.
MAP
(out) This enumeration value indicates that Minimum Advertised Pricing is enabled for the order line item. If this value is returned, the minimum advertised price is found in the MinimumAdvertisedPrice field.
MFO
(out) This enumeration value indicates that Made For Outlet Comparison Pricing is enabled for the order line item. If this value is returned, the Made For Outlet Comparison price is found in the MadeForOutletComparisonPrice field.
None
(out) This enumeration value indicates that neither Strikethrough Pricing or Minimum Advertised Pricing is enabled for the order line item.
STP
(out) This enumeration value indicates that Strikethrough Pricing is enabled for the order line item. If this value is returned, the price in the OriginalRetailPrice field will be crossed out in the View Item page.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DiscountPriceInfo
  .SoldOffeBay
boolean Conditionally Used by the eBay UK and eBay Germany (DE) sites, this flag indicates that the discount price (specified as StartPrice) is the price for which the seller offered the same (or similar) item for sale on a Web site or offline store other than eBay in the previous 30 days. The discount price is always in reference to the seller's own price for the item.

If this field is set to true, eBay displays 'Was*' in the UK and 'Ursprunglich*' in Germany, next to the discounted price of the item. In the event both SoldOffeBay and SoldOneBay fields are set to true, SoldOneBay takes precedence.

Default: false.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DiscountPriceInfo
  .SoldOneBay
boolean Conditionally Used by the eBay UK and eBay Germany (DE) sites, this flag indicates that the discount price (specified as StartPrice) is the price for which the seller offered the same (or similar) item for sale on eBay within the previous 30 days. The discount price is always in reference to the seller's own price for the item.

If this field is set to true, eBay displays 'Was' in the UK and 'Ursprunglich' in Germany, next to the discounted price of the item. In the event both SoldOffeBay and SoldOneBay fields are set to true, SoldOneBay takes precedence.

Default: false.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.DispatchTimeMax int Conditionally Specifies the maximum number of business days the seller commits to for preparing an item to be shipped after receiving a cleared payment. This time does not include the shipping time (the carrier's transit time).

Note: If the seller opts into the eBay Guaranteed Delivery feature and wants to make a listing eligible for eBay Guaranteed Delivery, the DispatchTimeMax value must be set to 0 or 1 (days) and the cumulative value of DispatchTimeMax plus the transit time of the shipping service (returned in ShippingServiceDetails.ShippingTimeMax field of GeteBayDetails) must be 4 business days or less to be eligible for this feature. See the eBay Guaranteed Delivery page in Seller Center for more information on this program. The eBay Guaranteed Delivery feature is only available on the US and Australia marketplaces.
For Add/Revise/Relist calls: Required for listings in certain categories when certain shipping services (with delivery) are offered. See HandlingTimeEnabled in GetCategoryFeatures.

The seller sets this to a positive integer value corresponding to the number of 'handling' days. For a list of allowed values on each eBay site, use DispatchTimeMaxDetails in GeteBayDetails. Supported handling times for most sites in most categories range from 0 (same-day handling) to 3 business days, but this can vary by site. Some categories on some sites support longer handling times, and this generally comes into play with extremely large items where freight shipping may be required.

This field is required whenever flat-rate or calculated shipping is used, but does not apply when there is no shipping involved, which is the case for digital gift card listings, or any orders where local pickup is available and this option is selected by the buyer.

For ReviseItem only: If the listing has bids or sales and it ends within 12 hours, you can't change this value. If the listing is a GTC listing that has sales or ends within 12 hours (one or the other, but not both), you can add or change this value. If the listing has no bids or sales and more than 12 hours remain before the listing ends, you can add or change the dispatch (handling) time.

For GetItem: GetItem returns DispatchTimeMax only when shipping service options are specified for the item and the seller specified a dispatch time.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Handling time
    (GetCategoryFeatures) Category.HandlingTimeEnabled for categories that support handling times

Item.eBayPlus boolean Conditionally eBay Plus is a premium account option for buyers, which provides benefits such as fast and free domestic shipping, and free returns on selected items. To offer this feature to buyers, sellers must opt in to eBay Plus, and their selling status must be 'Above Standard' or above.

Note: Currently, eBay Plus is only available to buyers on the Germany and Australia marketplaces, and this field should only be used by sellers selling eligible items in Germany.

In Australia, the seller has no control/responsibility over setting the eBay Plus feature for a listing. Instead, eBay will evaluate/determine whether a listing is eligible for eBay Plus. Due to this fact, an Australian seller will also get the 21919431: This listing isn't eligible for eBay Plus. warning message in an add/revise/relist call, even though eBay may ultimately set the eBay Plus feature on the listing if the item is eligible.

In an add/revise/relist call, a seller on the Germany site must include this field and set its value to true. If the seller is not eligible for/opted in to eBay Plus and/or the listing category or item does not qualify for eBay Plus, a warning message will be returned to the seller in the response indicating this. In addition to the seller, listing category, and item being eligible for eBay Plus, the seller must also set/commit to the following for the listing:
  • Listing format must be fixed-price.
  • Same-day or one-day handling (DispatchTimeMax set to 0 or 1).
  • A free, next-day shipping option offered.
  • A return policy that offers a 30-day (or longer) return period.
If this field is returned as true in a 'Get' call, it indicates that the item is eligible for eBay Plus treatment, but eBay Plus will only come into play if the buyer is subscribed to eBay Plus.

See:
    Bay Plus for more details
    Selling with eBay Plus (Australia help page)

Item.eBayPlusEligible boolean Conditionally If this field is returned as true, this item is eligible to be listed under the eBay Plus program. eBay Plus is a premium account option for buyers, which provides benefits such as fast and free domestic shipping and free returns on selected items. eBay sellers must opt in to eBay Plus to be able offer the program on qualifying listings. Among other requirements, sellers must commit to next-day delivery of those items.

Note: Currently, eBay Plus is available only to buyers in Germany and Australia marketplaces.

See eBay Plus for more details.

Item.EligibleForPickupDropOff boolean Conditionally For 'Click and Collect' eligible sellers, this field was once used to set 'Click and Collect' eligibility at the listing level. However, now the seller can only opt in to 'Click and Collect' at the account level, and then each of their listings will be automatically evaluated for 'Click and Collect' eligibility.

Note: Until this field is fully deprecated in the Trading WSDL (and in Add/Revise/Relist/Verify calls), it can still be used, but it will have no functional affect. However, if set in an Add/Revise/Relist/Verify call, it will get returned in GetItem, but it won't be a true indicator if the item is available for the 'Click and Collect' logistics type. Instead, the Item.AvailableForPickupDropOff field should be referenced to see if the item is available for 'Click and Collect'.
Item.eMailDeliveryAvailable boolean Conditionally The boolean value that is returned in this field will indicate whether or not a digital gift card can be delivered by email to the buyer or recipient of the gift card. This field is only applicable to digital gift card listings.
Item
  .ExtendedProducerResponsibility
ExtendedProducerResponsibilityType Conditionally This container is used to provide the eco-participation fee for a product. Use the getExtendedProducerResponsibilityPolicies method of the Sell Metadata API to retrieve categories that support eco-participation fee for a specified marketplace."
For GetItem calls, this container is only returned to the listing owner, if the container is available.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedProducerResponsibility
  .EcoParticipationFee
AmountType (double) Conditionally This is the fee paid for new items to the eco-organization (for example, "eco-organisme" in France). It is a contribution to the financing of the elimination of the item responsibly. For multiple-variation listings, the EcoParticipationFee in the VariationExtendedProducerResponsibility container is used for each variation in the listing, and not the EcoParticipationFee in the ExtendedProducerResponsibility container.
Min: 0.0.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedProducerResponsibility
  .EcoParticipationFee
  [ attribute currencyID ]
CurrencyCodeType Conditionally This is the fee paid for new items to the eco-organization (for example, "eco-organisme" in France). It is a contribution to the financing of the elimination of the item responsibly. For multiple-variation listings, the EcoParticipationFee in the VariationExtendedProducerResponsibility container is used for each variation in the listing, and not the EcoParticipationFee in the ExtendedProducerResponsibility container.

For a list of possible enumeration values, see CurrencyCodeType.
Item
  .ExtendedSellerContactDetails
ExtendedContactDetailsType Conditionally Extended contact information for sellers using the Classified Ad format. Specifies the days and hours when the seller can be contacted. To remove seller contact information when revising or relisting an item, use DeletedField.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ClassifiedAdContactByEmailEnabled
boolean Conditionally A value of true in this field indicates that potential buyers can contact the seller of the Classified Ad listing by email.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails
ContactHoursDetailsType Conditionally This containers consists of fields that allows the seller of a Classified Ad listing to tell potential buyers what days and times they may be contacted to inquire about the listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails
  .Hours1AnyTime
boolean Conditionally Indicates whether or not a user is available to be contacted 24 hours a day during the range of days specified using the Hours1Days element. True indicates the user is available 24 hours a day, false indicates otherwise. In the case of this field being true, all values provided for Hours1From and Hours1To will be ignored. In the case of this field being false, the values provided Hours1From and Hours1To will be considered.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails
  .Hours1Days
DaysCodeType Conditionally Indicates the range of days for which the primary contact hours specified by Hours1AnyTime or Hours1From and Hours1To apply. If a value of None is provided for this field, the values provided for Hours1AnyTime, Hours1From, Hours1To are ignored.

Applicable values:

CustomCode
(in/out) Reserved for internal or future use.
EveryDay
(in/out) Seller can be contacted any day during the specified contact hours.
None
(in/out) Seller does not want to be contacted. Contact hours will not be supported for any days. If contact hours are specified, they will be ignored.
Weekdays
(in/out) Seller can be contacted Monday through Friday during the specified contact hours.
Weekends
(in/out) Seller can be contacted Saturday or Sunday during the specified contact hours.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails
  .Hours1From
time Conditionally Indicates the starting time of day this eBay user is available for other eBay members to contact for the range of days specified using Hours1Days. Enter times in 30 minute increments from the top of the hour. That is, enter values either on the hour (:00) or 30 minutes past the hour (:30). Other values will be will be rounded down to the next closest 30 minute increment. Times entered should be local to the value provided for TimeZoneID.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails.Hours1To
time Conditionally Indicates the ending time of day this eBay user is available for other eBay members to contact them for the range of days specified using Hours1Days. Enter times in 30 minute increments from the top of the hour. That is, enter values either on the hour (:00) or 30 minutes past the hour (:30). Other values will be will be rounded down to the next closest 30 minute increment. Times entered should be local to the value provided for TimeZoneID.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails
  .Hours2AnyTime
boolean Conditionally Indicates whether or not a user is available to be contacted 24 hours a day during the range of days specified using the Hours2Days element. True indicates the user is available 24 hours a day, false indicates otherwise. In the case of this field being true, all values provided for Hours2From and Hours2To will be ignored. In the case of this field being false, the values provided Hours2From and Hours2To will be considered.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails
  .Hours2Days
DaysCodeType Conditionally Indicates the range of days for which the secondary contact hours specified by Hours2AnyTime or Hours2From and Hours2To apply. If a value of None is provided for this field, the values provided for Hours2AnyTime, Hours2From, Hours2To are ignored.
Note: You cannot set Hours2Days to EveryDay. If Hours1Days is set to EveryDay, secondary contact hours do not apply. Hours2Days cannot be set to the same value as Hours1Days.

Applicable values:

CustomCode
(in/out) Reserved for internal or future use.
EveryDay
(in/out) Seller can be contacted any day during the specified contact hours.
None
(in/out) Seller does not want to be contacted. Contact hours will not be supported for any days. If contact hours are specified, they will be ignored.
Weekdays
(in/out) Seller can be contacted Monday through Friday during the specified contact hours.
Weekends
(in/out) Seller can be contacted Saturday or Sunday during the specified contact hours.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails
  .Hours2From
time Conditionally Indicates the starting time of day this eBay user is available for other eBay members to contact for the range of days specified using Hours2Days. Enter times in 30 minute increments from the top of the hour. That is, enter values either on the hour (:00) or 30 minutes past the hour (:30). Other values will be will be rounded down to the next closest 30 minute increment. Times entered should be local to the value provided for TimeZoneID.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails.Hours2To
time Conditionally Indicates the ending time of day this eBay user is available for other eBay members to contact them for the range of days specified using Hours1Days. Enter times in 30 minute increments from the top of the hour. That is, enter values either on the hour (:00) or 30 minutes past the hour (:30). Other values will be will be rounded down to the next closest 30 minute increment. Times entered should be local to the value provided for TimeZoneID.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item
  .ExtendedSellerContactDetails
  .ContactHoursDetails
  .TimeZoneID
string Conditionally Indicates the local time zone of the values provided for Hours1From/Hours1To and Hours2From/Hours2To. If you specify a contact hours time range with Hours1From and Hours1To, you must provide a local time zone. To retrieve a complete list of the TimeZoneID values supported by eBay, call GeteBayDetails with DetailName set to TimeZoneDetails.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.FreeAddedCategory CategoryType Conditionally The unique identifier for a secondary category that eBay has added as a free promotion. You cannot add this yourself. This container is only returned if the item was listed in a single category and eBay added a free secondary category.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.FreeAddedCategory
  .CategoryID
string Conditionally This string value is the unique identifier of an eBay category. In GetItem and related calls, see the CategoryName field for the text name of the category. The parent category of this eBay category is only shown in GetCategories.

In an Add call, the PrimaryCategory.CategoryID is conditionally required unless the seller successfully uses the ProductListingDetails container to find an eBay catalog product match. When the seller successfully uses an eBay catalog product to create a listing, the listing title, listing description, item specifics, listing category, and stock photo defined in the catalog product is used to create the listing.

In an Add/Revise/Relist call, the SecondaryCategory.CategoryID is conditionally required if a Secondary Category is used. Using a Secondary Category can incur a listing fee.

For ReviseItem only: Previously, removing the listing from a secondary category was only possible within 12 hours of the listing's scheduled end time when an auction listing had no active bids or a multiple-quantity, fixed-price listing had no items sold, but this restriction no longer exists. Now, the secondary category can be dropped for any active listing at any time, regardless of whether an auction listing has bids or a fixed-price listing has sales. To drop a secondary category, the seller passes in a value of 0 in the SecondaryCategory.CategoryID field.

Max length: 10.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.FreeAddedCategory
  .CategoryName
string Conditionally This string value is the display name of the eBay primary category, as it would appear on the eBay site. In GetItem, this will be a fully-qualified category name (e.g., Collectibles:Decorative Collectibles:Hummel, Goebel).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.HideFromSearch boolean Conditionally This boolean field is returned as true if the listing has been hidden from all searches occurring on eBay. If a listing is hidden from eBay searches, the reason can be found in the ReasonHideFromSearch field.
Item.IgnoreQuantity boolean Conditionally This boolean field is returned as true if the actual quantity of a multiple-quantity, fixed-price listing (indicated in the Item.Quantity field) can not be accurately determined by eBay.
Item
  .IntegratedMerchantCreditCardEnabled
boolean Conditionally This field is no longer applicable as eBay sellers can no longer use iMCC gateway accounts to handle buyer payments.
Note: This field will stop being returned in order management calls on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.InventoryTrackingMethod InventoryTrackingMethodCodeType Conditionally Indicates whether you prefer to track your eBay listings by eBay Item ID or by your own SKU.

If a seller will be converting an existing eBay listing into the new Inventory model using the bulkMigrateListings call of the Inventory API, the InventoryTrackingMethod value must be set to ItemID (default value), but the item must also have a SKU value (Item.SKU or Variation.SKU) associated with it. For GetItem and related calls: Only returned when the value is SKU; not returned when the value is ItemID.


Applicable values:

CustomCode
(in/out) Reserved for internal or future use.
ItemID
(in/out) Indicates the seller prefers to track the listing by its eBay item ID. This is the default for all listings.
SKU
(in/out) Indicates the seller prefers to track the listing by their own SKU.

When you track by SKU, it means you can pass in your SKU instead of the eBay item ID in other calls that support SKU as an input field. If you choose SKU as your tracking preference for a listing, the value in Item.SKU must be unique across your active listings. You cannot create new listings with the same Item.SKU value while the listing is active (that is, until the existing listing with that SKU has ended).

However, you can use ReviseInventoryStatus to update the quantity and/or price for the existing SKU as needed. When revising a listing where the InventoryTrackingMethod was set to SKU, you must pass in both the InventoryTrackingMethod tag (with the value set to SKU) and the SKU tag with the SKU value from your original listing.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See eBay Merchant Data API for AddFixedPriceItem and ReviseFixedPriceItem.

Item
  .IsIntermediatedShippingEligible
boolean Conditionally This boolean field is returned as true if the item is eligible is to be shipped internationally via eBay's Global Shipping Program. With the Global Shipping Program, the buyer pays a single shipping fee for the order, which includes the domestic shipping leg, the international shipping leg, and handling charges, and import charges.

eBay uses a shipping partner that allows the seller to ship the package to a domestic location and then the shipping partner takes care of the rest, including the international shipping leg.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.IsItemEMSEligible boolean Always If true, the item is eligible for shipping managed by eBay; false, the item is not eligible for shipping managed by eBay.

DetailLevel: ItemReturnAttributes, ItemReturnCategories, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.IsSecureDescription boolean Conditionally This boolean field indicates whether or not the listing description is HTTPS secure/compliant. To be HTTPS secure/compliant, the Item.Description field may not contain any links to site pages that use the HTTP (and not HTTPS) protocol. This field will be returned with each listing that is found unless one or more OutputSelector fields are used and Item.IsSecureDescription is not one of the values passed in to one of these fields.

If this field is returned as true, the listing is HTTPs secure/compliant, and the whole listing description will appear on the View Item page for the listing. If this field is returned as false, the listing is not HTTPs secure/compliant, and only a partial/brief listing description will appear on the View Item page for the listing, with a link to the full listing description that will load in another tab.

If the listing description is not HTTPS compliant, the fix is to call ReviseItem or ReviseFixedPriceItem and update the Item.Description field, removing all links to HTTP pages.

For more information about why eBay made this change, please see the Policy Updates page of the Fall 2017 Seller Updates page.
Item.ItemCompatibilityCount int Conditionally Indicates the number of compatible applications specified for the given item. Applies to items listed with fitment by application only (either manually or with a catalog product that supports compatibility).

Not returned if the item has no specified compatible applications. Not returned if IncludeItemCompatibilityList is specified in the request.

To retrieve the list of compatibility information, set IncludeItemCompatibilityList to true in the request.

Parts Compatibility is supported in limited Parts & Accessories categories for the eBay Motors (US) site (site ID 100) only.
Item.ItemCompatibilityList ItemCompatibilityListType Conditionally A list of parts compatibility information specified as name and value pairs. Describes an assembly with which a part is compatible (i.e., compatibility by application). For example, to specify a part's compatibility with a vehicle, the name (search name) would map to standard vehicle characteristics (e.g., Year, Make, Model, Trim, and Engine). The values would describe the specific vehicle, such as a 2006 Honda Accord. Use the Product Metadata API to retrieve valid search names and corresponding values.

For the AddItem family of calls: Use this for specifying parts compatibility by application manually. This can only be used in categories that support parts compatibility by application. Use GetCategoryFeatures with the CompatibilityEnabled feature ID to determine which categories support parts compatibility by application.

For ReviseFixedPriceItem and ReviseItem: When you revise a listing, if the listing has bids and/or ends within 12 hours, item compatibilities cannot be deleted. You may add item compatibilities at any time.

For GetItem: ItemCompatibilityList is only returned if the seller included item compatibility in the listing and IncludeItemCompatibilityList is set to true in the GetItem request.

Item.ItemCompatibilityList
  .Compatibility
ItemCompatibilityType Conditionally,
repeatable: [0..*]
Details for an individual compatible application, consisting of the name-value pair and related parts compatibility notes. When revising or relisting, the Delete field can be used to delete individual parts compatibility nodes.

Note: For the GetItem call, Compatibility includes only parts compatibility details that were specified manually; that is, they do not correspond to an eBay catalog product. To retrieve parts compatibility details that do correspond to eBay catalog products, use the eBay Product API's getProductCompatibilities call.

See Product API ProductCompatibilities call reference for information about retrieving parts compatibility details that correspond to eBay catalog products..

Item.ItemCompatibilityList
  .Compatibility
  .CompatibilityNotes
string Conditionally The seller may optionally enter any notes pertaining to the parts compatibility being specified. Use this field to specify the placement of the part on a vehicle or the type of vehicle a part fits.
Item.ItemCompatibilityList
  .Compatibility.NameValueList
NameValueListType Conditionally,
repeatable: [0..*]
A name-value pair describing a single compatible application. The allowed names and values are specific to the primary category in which the item is listed. For example, when listing in a Parts & Accessories category, where the applications are vehicles, the allowed names might include Year, Make, and Model, and the values would correspond to specific vehicles in eBay's catalog. For details and examples, see Specify parts compatibility manually.

The eBay Germany, UK, France, Italy, Spain, and Australia sites support the use of K type vehicle numbers to specify vehicle parts compatibility. To use a K type number, set the Name field to "KType" and set the corresponding Value field to the appropriate K type number.

The DE and UK eBay sites also support the use of an eBay Product ID (or ePID) number/value pair to specify motorcycle and scooter parts compatibility (currently, only DE supports scooter parts compatibily). To use an ePID number to specify part compatibilities, set the Name field to "ePID" and the corresponding Value field to the ePID number that matches the motorcycle for the part(s) you are listing. Motorcycle ePID numbers are provided by the Master Motorcycle List (MML) file, which contains the ePID numbers and their associated vehicle mappings). For motorcycles, an ePID number contains the vehicle make, model, CCM, year, and submodel data. Please use the following links to obtain the DE and UK MML data files:

- DE seller help page: http://verkaeuferportal.ebay.de/fahrzeugteile-und-zubehoer-optimal-einstellen
- UK seller help page: http://pages.ebay.co.uk/help/sell/contextual/master-motorcycle-list-manually.html
Item.ItemCompatibilityList
  .Compatibility.NameValueList
  .Name
string Conditionally Depending on the call and context, this value is either a name of an Item/Variation Specific, or a Parts Compatibility name.

For the AddItem and AddFixedPriceItem families of calls: In the Item.ItemSpecifics context, the value in this field will either be the name of a required/recommended/optional item specific name for the category, or it may be a seller's customized item specific name.

For the AddFixedPriceItem family of calls: In the Compatibility.NameValueList context, this value is a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: For required and recommended item specifics that are returned in the getItemAspectsForCategory method of the Taxonomy API, the seller should pass in the name of these item specifics just as they are shown in the getItemAspectsForCategory response. Similarly, for catalog-enabled categories, the seller should pass in the name of instance aspects just as they are shown in the getItemAspectsForCategory response. Instance aspects are additional details unique to a specific item or listing that a seller can include along with the product aspects that are already defined in the eBay catalog product associated with the listing. Instance aspects common to many catalog-enabled categories include 'Bundle Description' and 'Modification Description'. eBay US sellers who ship to California are required to pass in a 'California Prop 65 Warning' item specific if the item in the listing contains one or more chemicals known to be harmful to human health. This item specific is passed at the listing level for both single-variation and multiple-variation listings. The 'California Prop 65 Warning' is considered an instance specific because it will be retained on the listing even when the seller lists using an eBay catalog product. The 'California Prop 65 Warning' may be applicable in most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. Note: If Brand and MPN (Manufacturer Part Number) are being used to identify product variations in a multiple-variation listing, the Brand must be specified at the item level (ItemSpecifics container) and the MPN for each product variation must be specified at the variation level (VariationSpecifics container). The Brand name must be the same for all variations within a single listing.
Max length: 65.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemCompatibilityList
  .Compatibility.NameValueList
  .Source
ItemSpecificSourceCodeType Conditionally This enumerated value indicates whether the Item Specific was manually input or selected during listing/revision/re-listing time, or if the Item Specific name-value pair came from an eBay catalog product that the listing is associated with.

Applicable values:

CustomCode
(out) Reserved for future use.
ItemSpecific
(out) This enumeration value indicates that the corresponding Item Specific was specified by the seller in Add/Revise/Relist call or flow. In an Add/Revise/Relist API call, Item Specifics for a listing are specified through the ItemSpecifics.NameValueList or VariationSpecifics.NameValueList (for a variation in a multiple-variation listing) containers.
Product
(out) This enumeration value indicates that the corresponding Item Specific was derived from a product in the eBay Catalog, and was automatically picked up by the listing when the seller created, revised, or relisted an item referencing and matching an eBay catalog product through the use of an ePID or GTIN value in the ProductListingDetails container.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemCompatibilityList
  .Compatibility.NameValueList
  .Value
string Conditionally,
repeatable: [0..*]
Depending on the call and context, this value is either the value of an Item/Variation Specific, a Parts Compatibility value, or a product identifier.

For the AddItem family of calls: Multiple values can only be specified for an Item Specific if the itemToAspectCardinality field of the getItemAspectsForCategory method shows a value of MULTI. If an item specific only supports a single value, only the first item specific value specified in the request will be used.

For the Compatibility.NameValueList context, this is the corresponding value of a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: The standard maximum length for the value of an item specific is 65, but the maximum allowed length increases for instance aspects such as 'Bundle Description' and 'Modification Description'. For item specifics with max lengths greater than 65, the actual max length will be returned in a corresponding aspectMaxLength field. The maximum allowed length for the new 'California Prop 65 Warning' item specific is 800 characters. For more information about the 'California Prop 65 Warning' item specific, see the ItemSpecifics.NameValueList field description.
Max length: 65 (but longer for some instance aspects, including 800 for 'California Prop 65 Warning').

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemID ItemIDType (string) Always The unique identifier of the eBay listing. This identifier is generated by eBay and returned in the response of an Add call if an item is successfully listed. Once an item is successfully created, the ItemID cannot be modified.

Note: Although we represent item IDs as strings in the schema, we recommend you store them as 64-bit signed integers. If you choose to store item IDs as strings, allocate at least 19 characters (assuming decimal digits are used) to hold them. Your code should be prepared to handle IDs of up to 19 digits.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemPolicyViolation ItemPolicyViolationType Conditionally Specifies the details of policy violations if the item was administratively canceled.
Item.ItemPolicyViolation
  .PolicyID
long Conditionally Policy ID of the violated policy which resulted in item being administratively canceled.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemPolicyViolation
  .PolicyText
string Conditionally Brief information of the violated policy which resulted in item being administratively canceled.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemSpecifics NameValueListArrayType Conditionally This container is a list of Item Specific Name/Value pairs used by the seller to provide desciptive details of an item in a structured manner.

If creating, revising, or relisting an item with an Add, Revise, or Relist call, it is recommended that you use the getItemAspectsForCategory method of the Taxonomy API to retrieve mandatory and recommended Item Specifics for a category.

For ReviseItem only: When you revise a listing, if an auction listing has one or more bids and ends within 12 hours, you cannot change or add Item Ppecifics. If the auction listing has bids but ends in more than 12 hours, you cannot change existing Item Specifics, but you can add Item Specifics that were not previously included.

If your listing is in a eBay product catalog-enabled category, certain Name/Value pairs will be accepted as product identifying information. The Name can be Brand, MPN, or a Global Trade Item Number (GTIN). GTINs are a set of globally recognized identifiers, including EAN, ISBN, and UPC. However, the Values provided for these Names must comply with eBay's constraints or they will not be recognized as product identifiers. The Value for Brand must be an actual brand name (except that if the item is not branded, Value can be Unbranded.) The Value for Brand or MPN cannot contain only special characters (e.g. %$*#@). All GTINs must comply with international formatting standards. For more details, see Item Specifics.

If the ProductListingDetails container in an Add/Revise/Relist call is successfully used to find and use an eBay catalog product to create/revise listing, the seller should not remove or change the value of any Item Specific name or value that is defined as part of the eBay catalog product definition.

Note: If a listing is associated with an eBay catalog product, the seller does not need to pass in any Item Specifics that are already defined in the eBay catalog product. Sellers can make a call to the getItemAspectsForCategory method of the Taxonomy API to see if the category supports any 'instance aspects', which can be thought of as Item Specifics that are unique to the specific item that is being listed. Instance aspects are indicated if the corresponding aspectApplicableTo field of the getItemAspectsForCategory response shows a value of ITEM (and not PRODUCT). Many categories support the following instance aspects: Custom Bundle, Bundle Description, Modified Item, Modification Description, and California Prop 65 Warning. These instance aspects allow the seller to provide more information about product bundles or modified products in a structured way. Depending on the category, there are other instance aspects as well. Note: To specify an item's condition, use the ConditionID field instead of a condition Item Specific. Use GetCategoryFeatures to see which categories support ConditionID and to get a list of valid condition IDs. (If you specify ConditionID and you also specify Condition as a Item Specific, eBay drops the condition Item Specific.) For GetItem: This list is returned only when you specify IncludeItemSpecifics in the request (and the seller included Item Specifics in their listing).

To delete all Item Specifics when you revise or relist, specify Item.ItemSpecifics in DeletedField, and don't pass ItemSpecifics in the request.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Item Specifics.

Item.ItemSpecifics
  .NameValueList
NameValueListType Conditionally,
repeatable: [0..*]
For the AddItem family of calls: Contains the name and value(s) for an Item Specific. Only required when the ItemSpecifics container is specified.

Note: The maximum number of item specifics that may be defined for a listing has increased from 30 to 45.
For the AddFixedPriceItem family of calls: The same NameValueList schema is used for the ItemSpecifics node, the VariationSpecifics node, and the VariationSpecifcsSet node.

If the listing has variations, any name that you use in the VariationSpecifics and VariationSpecificsSet nodes can't be used in the ItemSpecifics node.
When you list with Item Variations:
  • Specify shared Item Specifics (e.g., Brand) in the ItemSpecifics node.
  • Specify up to five VariationSpecifics in each Variation node.
  • Specify all applicable names with all their supported values in the VariationSpecificSet node.
See the Variation sample in the AddFixedPriceItem call reference for examples.

For PlaceOffer: Required if the item being purchased includes Item Variations.

For AddToWatchList and RemoveFromWatchList: The ItemID value of the multiple-variation listing and the name-value pair to identify each variation in the listing are required.

Note: As of August 30, 2018, California will require sellers to display a Proposition 65 warning on online retail sites if products contain chemicals and/or substances that may impact the health of California buyers. This requirement is applicable to most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. The warning message can be customized by the seller, but should contain the following basic information:
  • The name of at least one listed chemical that prompted the warning
  • Text stating that the product 'can expose you to' the chemical(s) in the product
  • The URL for OEHHA's new Proposition 65 warnings website, which is www.P65Warnings.ca.gov
Unlike standard item specifics that allow a maximum of 65 characters in the Value field, the matching value for the 'California Prop 65 Warning' item specific allows up to 800 characters of text. When a seller passes in this item specific, eBay will automatically insert a warning symbol icon for the listing.



DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemSpecifics
  .NameValueList.Name
string Conditionally Depending on the call and context, this value is either a name of an Item/Variation Specific, or a Parts Compatibility name.

For the AddItem and AddFixedPriceItem families of calls: In the Item.ItemSpecifics context, the value in this field will either be the name of a required/recommended/optional item specific name for the category, or it may be a seller's customized item specific name.

For the AddFixedPriceItem family of calls: In the Compatibility.NameValueList context, this value is a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: For required and recommended item specifics that are returned in the getItemAspectsForCategory method of the Taxonomy API, the seller should pass in the name of these item specifics just as they are shown in the getItemAspectsForCategory response. Similarly, for catalog-enabled categories, the seller should pass in the name of instance aspects just as they are shown in the getItemAspectsForCategory response. Instance aspects are additional details unique to a specific item or listing that a seller can include along with the product aspects that are already defined in the eBay catalog product associated with the listing. Instance aspects common to many catalog-enabled categories include 'Bundle Description' and 'Modification Description'. eBay US sellers who ship to California are required to pass in a 'California Prop 65 Warning' item specific if the item in the listing contains one or more chemicals known to be harmful to human health. This item specific is passed at the listing level for both single-variation and multiple-variation listings. The 'California Prop 65 Warning' is considered an instance specific because it will be retained on the listing even when the seller lists using an eBay catalog product. The 'California Prop 65 Warning' may be applicable in most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. Note: If Brand and MPN (Manufacturer Part Number) are being used to identify product variations in a multiple-variation listing, the Brand must be specified at the item level (ItemSpecifics container) and the MPN for each product variation must be specified at the variation level (VariationSpecifics container). The Brand name must be the same for all variations within a single listing.
Max length: 65.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemSpecifics
  .NameValueList.Source
ItemSpecificSourceCodeType Conditionally This enumerated value indicates whether the Item Specific was manually input or selected during listing/revision/re-listing time, or if the Item Specific name-value pair came from an eBay catalog product that the listing is associated with.

Applicable values:

CustomCode
(out) Reserved for future use.
ItemSpecific
(out) This enumeration value indicates that the corresponding Item Specific was specified by the seller in Add/Revise/Relist call or flow. In an Add/Revise/Relist API call, Item Specifics for a listing are specified through the ItemSpecifics.NameValueList or VariationSpecifics.NameValueList (for a variation in a multiple-variation listing) containers.
Product
(out) This enumeration value indicates that the corresponding Item Specific was derived from a product in the eBay Catalog, and was automatically picked up by the listing when the seller created, revised, or relisted an item referencing and matching an eBay catalog product through the use of an ePID or GTIN value in the ProductListingDetails container.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ItemSpecifics
  .NameValueList.Value
string Conditionally,
repeatable: [0..*]
Depending on the call and context, this value is either the value of an Item/Variation Specific, a Parts Compatibility value, or a product identifier.

For the AddItem family of calls: Multiple values can only be specified for an Item Specific if the itemToAspectCardinality field of the getItemAspectsForCategory method shows a value of MULTI. If an item specific only supports a single value, only the first item specific value specified in the request will be used.

For the Compatibility.NameValueList context, this is the corresponding value of a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: The standard maximum length for the value of an item specific is 65, but the maximum allowed length increases for instance aspects such as 'Bundle Description' and 'Modification Description'. For item specifics with max lengths greater than 65, the actual max length will be returned in a corresponding aspectMaxLength field. The maximum allowed length for the new 'California Prop 65 Warning' item specific is 800 characters. For more information about the 'California Prop 65 Warning' item specific, see the ItemSpecifics.NameValueList field description.
Max length: 65 (but longer for some instance aspects, including 800 for 'California Prop 65 Warning').

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails ListingDetailsType Always Various details about a listing, some of which are calculated or derived after the item is listed. These include the start and end time, converted (localized) prices, and certain flags that indicate whether the seller specified fields whose values are not visible to the requesting user. For GetMyeBayBuying, returned as a self-closed element if no listings meet the request criteria.

In an Add/Revise/Relist call, this container is used to set the Best Offer Auto-Accept and Best Offer Auto-Decline threshold values.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails.Adult boolean Always If true, the item is listed in a Mature category. Users must accept the Mature Category agreement on the eBay site to retrieve items listed in Mature categories. (Users do not need to sign this agreement to be able to list items in Mature Categories.)
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .BestOfferAutoAcceptPrice
AmountType (double) Conditionally The price at which Best Offers are automatically accepted. Similar in use to MinimumBestOfferPrice. If a buyer submits a Best Offer that is at or above this value, the offer is automatically accepted by the seller. This applies only to items listed in categories that support the BestOfferAutoAcceptPrice feature.

For this setting to have an effect, the Best Offer feature must be enabled for the listing, and only the seller who listed the item will see BestOfferAutoAcceptPrice in a call response.

For Revise and Relist calls: If a seller wanted to disable the Best Offer Auto-Accept and/or Best Offer Auto-Reject feature when revising or relisting an item, the full path to one or both of these two corresponding fields would be provided in a DeletedField tag, like the following:
 Item.ListingDetails.BestOfferAutoAcceptPrice 


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .BestOfferAutoAcceptPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally The price at which Best Offers are automatically accepted. Similar in use to MinimumBestOfferPrice. If a buyer submits a Best Offer that is at or above this value, the offer is automatically accepted by the seller. This applies only to items listed in categories that support the BestOfferAutoAcceptPrice feature.

For this setting to have an effect, the Best Offer feature must be enabled for the listing, and only the seller who listed the item will see BestOfferAutoAcceptPrice in a call response.

For Revise and Relist calls: If a seller wanted to disable the Best Offer Auto-Accept and/or Best Offer Auto-Reject feature when revising or relisting an item, the full path to one or both of these two corresponding fields would be provided in a DeletedField tag, like the following:
 Item.ListingDetails.BestOfferAutoAcceptPrice 


For a list of possible enumeration values, see CurrencyCodeType.
Item.ListingDetails
  .BindingAuction
boolean Always Applicable for Real Estate auctions only. If true, buyers and sellers are expected to follow through on the sale. If false, bids for the Real Estate auction are only expressions of interest.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .BuyItNowAvailable
boolean Conditionally Indicates whether the Buy It Now feature is available for an auction listing. As a general rule, once an auction listing has bids (and the high bid exceeds the reserve price, if any), the Buy It Now feature becomes disabled for the listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .CheckoutEnabled
boolean Always Indicates whether or not the seller's Checkout Enabled preference is turned on.
Note: A 'Checkout Enabled' setting is no longer available to sellers, and this field is always returned as true. Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .ConvertedBuyItNowPrice
AmountType (double) Always
Converted value of the BuyItNowPrice in the currency of the site that returned this response. For active items, refresh this value every 24 hours to pick up the current conversion rates.
Note: The ListingDetails.ConvertedBuyItNowPrice field will stop being returned in GetItemTransactions, GetSellerTransactions, and GetMyeBaySelling (SoldList and DeletedFromSoldList) on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .ConvertedBuyItNowPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally
Converted value of the BuyItNowPrice in the currency of the site that returned this response. For active items, refresh this value every 24 hours to pick up the current conversion rates.
Note: The ListingDetails.ConvertedBuyItNowPrice field will stop being returned in GetItemTransactions, GetSellerTransactions, and GetMyeBaySelling (SoldList and DeletedFromSoldList) on January 31, 2024.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ListingDetails
  .ConvertedReservePrice
AmountType (double) Conditionally
Converted value of the ReservePrice in the currency of the site that returned this response. Only returned for listings with a reserve price when the requesting user is the listing's seller. For active items, refresh this value every 24 hours to pick up the current conversion rates. Not applicable to fixed-price listings.
Note: The ListingDetails.ConvertedReservePrice field will stop being returned in GetItemTransactions, GetSellerTransactions, and GetMyeBaySelling (SoldList and DeletedFromSoldList) on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .ConvertedReservePrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally
Converted value of the ReservePrice in the currency of the site that returned this response. Only returned for listings with a reserve price when the requesting user is the listing's seller. For active items, refresh this value every 24 hours to pick up the current conversion rates. Not applicable to fixed-price listings.
Note: The ListingDetails.ConvertedReservePrice field will stop being returned in GetItemTransactions, GetSellerTransactions, and GetMyeBaySelling (SoldList and DeletedFromSoldList) on January 31, 2024.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ListingDetails
  .ConvertedStartPrice
AmountType (double) Always
Converted value of the StartPrice in the currency of the site that returned this response. For active items, refresh this value every 24 hours to pick up the current conversion rates.

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.
Note: The ListingDetails.ConvertedStartPrice field will stop being returned in GetItemTransactions, GetSellerTransactions, and GetMyeBaySelling (SoldList and DeletedFromSoldList) on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .ConvertedStartPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally
Converted value of the StartPrice in the currency of the site that returned this response. For active items, refresh this value every 24 hours to pick up the current conversion rates.

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.
Note: The ListingDetails.ConvertedStartPrice field will stop being returned in GetItemTransactions, GetSellerTransactions, and GetMyeBaySelling (SoldList and DeletedFromSoldList) on January 31, 2024.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ListingDetails
  .EndingReason
EndReasonCodeType Conditionally This field is only returned if the item was ended early (before listing duration expired) by the seller (through an API call or on the Web site) or ended administratively by eBay. The value in this field indicates the seller's reason for ending the listing early.

Applicable values: See EndingReason.
Code so that your app gracefully handles any future changes to this list.
Item.ListingDetails.EndTime dateTime Always Time stamp (in GMT) when the listing is scheduled to end (calculated based on the values of StartTime and ListingDuration ) or the actual end time if the item has ended.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .HasPublicMessages
boolean Always Indicates whether the item has any publicly displayed messages. Use GetMemberMessages to retrieve public messages for the item if this flag indicates that there are any.
Note: The HasPublicMessages field will stop being returned in GetItemTransactions and GetSellerTransactions, on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .HasReservePrice
boolean Always If true, the seller specified a value in ReservePrice.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .HasUnansweredQuestions
boolean Always Indicates whether the item has any unanswered questions. Use GetMemberMessages to retrieve unanswered questions for the item if this flag indicates that there are any.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .MinimumBestOfferPrice
AmountType (double) Conditionally Specifies the minimum acceptable Best Offer price. If a buyer submits a Best Offer that is below this value, the offer is automatically declined. This applies only to items listed in categories that support the Best Offer auto-decline feature.

In order for this setting to have an effect, Best Offer must be enabled for the listing, and this value will only be exposed to the seller who listed the item.

For Revise and Relist calls: If a seller wanted to disable the Best Offer auto-accept and/or Best Offer auto-reject feature when revising or relisting an item, the full path to one or both of these two corresponding fields would be provided in a DeletedField tag, like the following:
 Item.ListingDetails.MinimumBestOfferPrice 

Note: The Best Offer feature is now available for auction listings on the following sites: US, Canada, UK, Germany, Australia, France, Italy, and Spain. However, sellers must choose between offering Best Offer or Buy It Now on an auction listing, as both features cannot be enabled on the same auction listing. As of January 2019, the value set in this field for an auction listing can be more than the auction start price. Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .MinimumBestOfferPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Specifies the minimum acceptable Best Offer price. If a buyer submits a Best Offer that is below this value, the offer is automatically declined. This applies only to items listed in categories that support the Best Offer auto-decline feature.

In order for this setting to have an effect, Best Offer must be enabled for the listing, and this value will only be exposed to the seller who listed the item.

For Revise and Relist calls: If a seller wanted to disable the Best Offer auto-accept and/or Best Offer auto-reject feature when revising or relisting an item, the full path to one or both of these two corresponding fields would be provided in a DeletedField tag, like the following:
 Item.ListingDetails.MinimumBestOfferPrice 

Note: The Best Offer feature is now available for auction listings on the following sites: US, Canada, UK, Germany, Australia, France, Italy, and Spain. However, sellers must choose between offering Best Offer or Buy It Now on an auction listing, as both features cannot be enabled on the same auction listing. As of January 2019, the value set in this field for an auction listing can be more than the auction start price. Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ListingDetails
  .RelistedItemID
ItemIDType (string) Conditionally Indicates the new item ID for a re-listed item. When an item is re-listed, the item ID for the new item is added to the old listing, so buyers can navigate to the new listing. This value only appears when the old listing is retrieved. The RelistedItemID of the original item will reflect the last relist.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .SecondChanceOriginalItemID
ItemIDType (string) Conditionally The item ID for the original listing from which a second chance offer is made. This value is only returned when the data for the second chance offer listing is retrieved. Output only.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails.StartTime dateTime Always The StartTime value returned by non-search calls such as GetItem is the time stamp (in GMT) for when the item was listed.
Item.ListingDetails
  .TCROriginalItemID
ItemIDType (string) Conditionally Indicates the item ID of the original item listing from which a Transaction Confirmation Request (TCR) was created. This value is only returned when the data for a TCR is retrieved.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .ViewItemURL
anyURI Always The URL of the Web page where a user can view the listing. On the US site, this is called the View Item page. If you enabled affiliate tracking in a search-related call (for example, if you used the AffiliateTrackingDetails container in an applicable call), ViewItemURL contains a string that includes affiliate tracking information (see the eBay Partner Network).
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDetails
  .ViewItemURLForNaturalSearch
anyURI Conditionally This URL takes you to the same View Item page as ViewItemURL, but this URL is optimized to support natural search. That is, this URL is designed to make items on eBay easier to find via popular Internet search engines. The URL includes the item title along with other optimizations. To note, "?" (question mark) optimizes to "_W0QQ", "&" (ampersand) optimizes to "QQ", and "=" (equals sign) optimizes to "Z".

If you are an eBay affiliate, use this URL to promote your affiliate information.

Note: This URL may include additional query parameters that don't appear in ViewItemURL and vice versa. You should not modify the query syntax. For example, eBay won't recognize the URL if you change QQ to ?. Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingDuration token Conditionally Describes the number of days the seller wants the listing to be active (available for bidding/buying). The duration specifies the seller's initial intent at listing time.

The end time for a listing is calculated by adding the duration to the item's start time. If the listing ends early, the value of the listing duration does not change. When a listing's duration is changed, any related fees (e.g., 10-day fee) may be debited or credited (as applicable).

The valid choice of values depends on the listing format (see Item.ListingType). For a list of valid values, call GetCategoryFeatures with DetailLevel set to ReturnAll and look for ListingDurations information.

When you revise a listing, the duration cannot be reduced if it will result in ending the listing within 24 hours of the current date-time. You are only allowed to increase the duration of the listing if fewer than 2 hours have passed since you initially listed the item and the listing has no bids. You can decrease the value of this field only if the listing has no bids (or no items have sold) and the listing does not end within 12 hours.

Note: As of April 1, 2019, 'GTC' is the only supported listing duration for all eBay marketplaces with the following exceptions:
  • The following eBay Motors US categories are exempt from this change: Cars & Trucks (6001), Motorcycles (6024), Other Vehicles & Trailers (6038), Boats (26429), Powersports (66466).
  • All child categories under Cars, Motorcycles & Vehicles (9800) categories on the eBay UK and eBay Italy sites are also exempt from this change.
If any other listing duration value besides GTC is specified in this field, it will be ignored, and GTC will be used instead.


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

Applicable values: See ListingDurationCodeType
Item.ListingEnhancement ListingEnhancementsCodeType Conditionally,
repeatable: [0..*]
Describes listing upgrades that sellers can select for a fee, such as the BoldTitle upgrade.

You can add a listing upgrade when you revise a listing, but you cannot remove a listing upgrade. When you relist an item, use DeletedField to remove a listing upgrade.

Applicable values:

BoldTitle
(in/out) This value is used if the seller wants the listing title to be in boldface type. This feature will incur a listing fee. Note that this enhancement will not put the listing subtitle in boldface type (if a subtitle is used).
CustomCode
(in/out) Reserved for internal or future use.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ListingSubtype2 ListingSubtypeCodeType Conditionally Indicates a specific type of lead generation format listing, such as classified ad or local market best offer listing. Only applicable when ListingType = LeadGeneration.

Note: ListingSubtype2 replaces the deprecated ListingSubtype field. If both are specified in a request, ListingSubtype2 takes precedence.

Applicable values:

ClassifiedAd
(in/out) This value indicates that the lead generation listing is a classifed ad. Note that only some eBay categories support classified ad listings. Use the GetCategoryFeatures call (with FeatureID value set to AdFormatEnabled) to see which categories support classified ad listings.
CustomCode
(in/out) Reserved for internal or future use
LocalMarketBestOfferOnly
(in/out) This value indicates that the lead generation listing is a US Motors Local Market listing. Note that only some eBay Motors categories support Motors Local Market listings. Use the GetCategoryFeatures call (with the SITEID header set to 100 and the FeatureID value set to LocalMarketAdFormatEnabled) to see which eBay Motors categories support Motors Local Market listings.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    About Local Market Listings
    Advertising with Classified Ads

Item.ListingType ListingTypeCodeType Always The selling format of the eBay listing, such as auction (indicated with Chinese value), fixed-price (indicated with FixedPriceItem value), or classified ad (indicated with AdType value).

If this field is not included in an AddItem, AddItems, or VerifyAddItem call, the listing type defaults to auction

For AddFixedPriceItem, RelistFixedPriceItem, or VerifyAddFixedPriceItem call, this field must be included and set to FixedPriceItem, since these calls only work with fixed-price listings.

This field is not applicable to Revise calls because the selling format of active listings cannot be changed.

Applicable values: See ListingType.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Listing types.

Item.Location string Always Indicates the geographical location of the item (along with the value in the Country field). When you revise a listing, you can add or change this value only if the listing has no bids (or no items have sold) and it does not end within 12 hours.

If you do not specify Location, you must specify Item.PostalCode. If you specify a postal code, but do not specify a location, then the location is given a default value derived from the postal code.

For the Classified Ad format for motors vehicle listings, the value provided in the Location field is used as item location only if the SellerContactDetails.Street and the SellerContactDetails.Street2 are empty. Else, the SellerContactDetails.Street and the SellerContactDetails.Street2 will be used for item location.

Max length: 45.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.LocationDefaulted boolean Conditionally If true, eBay provided a central location as a result of the user not specifying a location. This typically occurs when the seller specifies PostalCode without Location.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.LotSize int Conditionally A lot is a set of two or more similar items included in a single listing that must be purchased together in a single order line item. The Item.LotSize value is the number of items in the lot. This field is required if two or more items are including in one listing.

Lots can be used for auction and fixed-price listings. Lot items can be listed only in lot-enabled categories. Call GetCategories to determine if a category supports lots. If the returned CategoryArray.Category.LSD (LotSize Disabled) value is true, the category does not support lots.

Max: 450,000.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.MechanicalCheckAccepted boolean Conditionally Indicates whether the seller allows the bidder to request mechanical inspection services from RAC. For the Car category listings on the UK site.
Default: false.
Item.PaymentAllowedSite SiteCodeType Always,
repeatable: [1..*]
Enables you to view the sites on which an item can be purchased, based on the payment methods offered for the item.

Applicable values: See PaymentAllowedSite.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PaymentDetails PaymentDetailsType Conditionally This container is used in an Add/Revise/Relist/Verify call if the seller is selling a motor vehicle. It is used by the seller to specify the amount of the initial deposit, and the due dates for the deposit and the full payment for a motor vehicle listing.

Note: If you are using business policies with your listing, the details set up in this container will instead be set up via the payment business policy. Payment business policies are associated with the listing via the SellerProfiles.SellerPaymentProfile container.
This container will only be returned in 'Get' calls for motor vehicle listings where an initial deposit is required for that vehicle.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See eBay motors offline payment methods.

Item.PaymentDetails
  .DaysToFullPayment
int Conditionally This field is used to set the due date (in days) for the buyer to pay off the full balance of the motor vehicle. The "clock starts" on the full payment due date as soon as the buyer commits to buying the vehicle by clicking the Buy It Now button, by winning the auction, or by the seller accepting that buyer's Best Offer/counteroffer. The three supported values here are 3, 7 (default), 10, and 14 days.

The seller must specify one or more of the following offline payment methods in the listing. The buyer will be expected to use one of these payment method options to pay the full balance of the motor vehicle.
  • CashOnPickup
  • MOCC (money order or cashier's check)
  • PersonalCheck

Min: 3. Max: 14. Default: 7.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PaymentDetails
  .DepositAmount
AmountType (double) Conditionally This dollar value indicates the amount of the initial deposit on the vehicle required from the buyer.

If the immediate payment requirement is set for the listing (see Item.AutoPay description), and the listing qualifies for immediate payment (e.g. the Buy It Now button is used), the deposit will be required immediately, and the HoursToDeposit field (if set) will not be applicable. If immediate payment is required for a motor vehicle deposit, the value input into this field cannot exceed '500.0', or an error will occur.

If there is no immediate payment requirement set for the listing the deposit will be required in 24, 48, or 72 hours after commitment to purchase (see the HoursToDeposit field). If immediate payment is not required for a motor vehicle deposit, the value input into this field cannot exceed '2000.0', or an error will occur.

If this field is not included in an Add/Revise call, its value defaults to '0.0', which would technically mean that a deposit is not required, even if the DepositType and HoursToDeposit fields were included.

Motor vehicle deposit details will be shown to prospective buyers in the listing. The available payment methods for the deposit will be shown on the checkout page once the buyer clicks the the Buy It Now button.

For ReviseItem and related calls: If the listing has no bids, the seller can add or lower a deposit; and they can increase the deposit if the listing doesn't require immediate payment. The seller can also remove the immediate payment option (if any). If the listing has bids, the seller can only lower an existing deposit; but not add or increase a deposit. The seller can't remove immediate payment when a listing with a deposit has bids.

Max: 500.0 (if immediate payment required); 2000.0 (if immediate payment not required).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PaymentDetails
  .DepositAmount
  [ attribute currencyID ]
CurrencyCodeType Conditionally This dollar value indicates the amount of the initial deposit on the vehicle required from the buyer.

If the immediate payment requirement is set for the listing (see Item.AutoPay description), and the listing qualifies for immediate payment (e.g. the Buy It Now button is used), the deposit will be required immediately, and the HoursToDeposit field (if set) will not be applicable. If immediate payment is required for a motor vehicle deposit, the value input into this field cannot exceed '500.0', or an error will occur.

If there is no immediate payment requirement set for the listing the deposit will be required in 24, 48, or 72 hours after commitment to purchase (see the HoursToDeposit field). If immediate payment is not required for a motor vehicle deposit, the value input into this field cannot exceed '2000.0', or an error will occur.

If this field is not included in an Add/Revise call, its value defaults to '0.0', which would technically mean that a deposit is not required, even if the DepositType and HoursToDeposit fields were included.

Motor vehicle deposit details will be shown to prospective buyers in the listing. The available payment methods for the deposit will be shown on the checkout page once the buyer clicks the the Buy It Now button.

For ReviseItem and related calls: If the listing has no bids, the seller can add or lower a deposit; and they can increase the deposit if the listing doesn't require immediate payment. The seller can also remove the immediate payment option (if any). If the listing has bids, the seller can only lower an existing deposit; but not add or increase a deposit. The seller can't remove immediate payment when a listing with a deposit has bids.


For a list of possible enumeration values, see CurrencyCodeType.
Item.PaymentDetails
  .DepositType
DepositTypeCodeType Conditionally In order for a seller to require a motor vehicle deposit from a buyer, this field must be included and set to OtherMethod. Otherwise, the field will default to None and a deposit will not be required.
Default: None.

Applicable values:

CustomCode
(in/out) Reserved for internal or future use
None
(in/out) This value indicates that no deposit is required.
OtherMethod
(in/out) This value indicates that a deposit is required from the buyer when purchasing a motor vehicle. Deposits for a motor vehicle are either due in 24, 48, or 72 hours after commitment to purchase. Or, in the case of a motor vehicle listing that is requiring immediate payment, the deposit it due immediately after commitment to purchase.

This value should be used in an Add/Revise call if the seller is requiring a deposit for a motor vehicle listing.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PaymentDetails
  .HoursToDeposit
int Conditionally This field is used to set the due date (in hours) for the motor vehicle deposit. The deposit amount is specified in the DepositAmount field. The "clock starts" on the deposit due date as soon as the buyer commits to buying the vehicle by clicking the Buy It Now button, by winning the auction, or by the seller accepting that buyer's Best Offer/counteroffer. The three supported values here are 24, 48 (default), and 72 hours.

Note: If the immediate payment requirement is set for the listing (see Item.AutoPay description), and the listing qualifies for immediate payment (e.g. the Buy It Now button is used), the HoursToDeposit field will not be applicable, since the buyer will be required to pay any deposit amount immediately (and not within 1, 2 or 3 days).

Min: 24 (hours). Max: 72 (hours). Default: 48 (hours).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PaymentMethods BuyerPaymentMethodCodeType Conditionally,
repeatable: [0..*]

For Add/Revise/Relist calls: A PaymentMethods field is required for each offline payment method supported by the seller for the listing.
Note: Sellers no longer have to specify any electronic payment methods for listings, so one or more PaymentMethods fields will only be needed for listings that require/support payments off of eBay's platform. If an electronic payment is supplied in a PaymentMethods field, a warning will be triggered and the payment method will be dropped. Note: If you are already referencing a payments business policy in an Add/Revise/Relist call with the SellerProfiles.SellerPaymentProfile container, no PaymentMethods fields will be needed, as these settings will already be set in the payments business policy. Payment methods are not applicable to any classified ad listings, as any agreement and payment is handled off of the eBay platform.

For Get calls that return PaymentMethods fields : One or more PaymentMethods fields will only be returned if the seller set one or more offline payment methods for the listing.
Note: This field will stop being returned in order management calls on January 31, 2024.

Applicable values:

CashOnPickup
(in/out) This enumeration value indicates that cash on pickup is accepted for payment. This value is only applicable for offline payments.
CustomCode
(in/out) Reserved for internal or future use.
MOCC
(in/out) This enumeration value indicates that a money order or cashiers check is accepted for payment. This value is only applicable for offline payments and is not supported on all marketplaces.
PersonalCheck
(in/out) This enumeration value indicates that a personal check is accepted for payment. This value is only applicable for offline payments and is not supported on all marketplaces.

(Not all values in BuyerPaymentMethodCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PayPalEmailAddress string Conditionally This field is no longer applicable, and should not be used.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PickupInStoreDetails PickupInStoreDetailsType Conditionally This container is used in Add/Revise/Relist/Verify listing calls by the seller to enable a listing with the 'In-Store Pickup' feature. The 'In-Store Pickup' feature is only available to a limited number of large retail merchants in the US, Canada, UK, Germany, and Australia marketplaces.

This container is returned in the 'Get' calls if the listing is enabled with the In-Store Pickup feature.
Item.PickupInStoreDetails
  .EligibleForPickupDropOff
boolean Conditionally For sellers opted in to Click and Collect, this field was once used to set Click and Collect eligibility at the listing level. However, now the seller can only opt in to Click and Collect at the account level, and then each of their listings will be automatically evaluated by eBay for Click and Collect eligibility.

Note: Until this field is fully deprecated in the Trading WSDL (and in Add/Revise/Relist/Verify calls), it can still be used, but it will have no functional affect. However, if set in an Add/Revise/Relist/Verify call, it will get returned in GetItem, but it won't be a true indicator if the item is actually available for the Click and Collect fulfillment method. Instead, the Item.AvailableForPickupDropOff field should be referenced to see if the listing actually has inventory that is available for pickup via the Click and Collect fulfillment method.
Item.PickupInStoreDetails
  .EligibleForPickupInStore
boolean Conditionally For Add/Revise/Relist/Verify calls: this field is included to enable the listing for In-Store Pickup. To enable the listing for In-Store Pickup, the seller includes this boolean field and sets its value to true. In-Store Pickup as a fulfillment method is only available to a limited number of large retail merchants in the US, Canada, UK, Germany, and Australia marketplaces. The In-Store Pickup feature can only be applied to multiple-quantity, fixed-price listings.

In addition to setting the EligibleForPickupInStore boolean field to true, the merchant must also perform the following actions in an Add/Revise/Relist/Verify call to enable the In-Store Pickup option on a multiple-quantity, fixed-price listing:
  • Have inventory for the product at one or more physical stores tied to the seller's account. By using the REST-based Inventory API, sellers can associate physical stores to their account by using the Create Inventory Location call, and then, using the Create Inventory Item call, they can add inventory to specific stores;
  • Include the seller-defined SKU value of the product(s) in the call request. For a single-variation listing, the SKU value would be specified in the Item.SKU field, and for a multiple-variation listing, the SKU value(s) would be specified in the Item.Variations.Variation.SKU field(s);
  • Set an immediate payment requirement on the item.
When a seller is successful at listing an item with the In-Store Pickup feature enabled, prospective buyers within a reasonable distance (25 miles or so) from one of the seller's stores (that has stock available) will see the "Available for In-Store Pickup" option on the listing, along with information on the closest store that has the item.

This field is returned in the 'Get' calls if the listing is enabled with the In-Store Pickup feature.
Item.PictureDetails PictureDetailsType Conditionally This container consists of the data associated with photos within the listing. Sellers can have up to 24 pictures in almost any category at no cost. Motor vehicle listings are an exception. The number of included pictures in motor vehicle listings depend on the selected vehicle package (see Fees for selling vehicles on eBay Motors). These photos can be hosted by eBay Picture Services (EPS), or the seller can host pictures on a non-eBay server. If pictures are externally-hosted, they must be hosted on a site that is using the 'https' protocol.

It is required that all listings have at least one picture.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Add pictures
    Adding photos to your listing

Item.PictureDetails
  .ExtendedPictureDetails
ExtendedPictureDetailsType Conditionally This container returns the URLs of the seller's self-hosted (hosted outside of eBay) pictures and the URL for the corresponding eBay Picture Services (EPS), that was generated when the self-hosted picture was uploaded.
Item.PictureDetails
  .ExtendedPictureDetails
  .PictureURLs
PictureURLsType Conditionally,
repeatable: [0..*]
This container returns the eBayPictureURL (images hosted by eBay Picture Services) and the ExternalPictureURL (images hosted outside of eBay) fields.
Item.PictureDetails
  .ExtendedPictureDetails
  .PictureURLs.eBayPictureURL
anyURI Conditionally,
repeatable: [0..24]
The URL of an eBay Picture Services (EPS) image. This image is created when a seller uploads a self-hosted image using the UploadSiteHostedPictures, AddItem or AddFixedPriceItem call.

Max length: 150.

DetailLevel: ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PictureDetails
  .ExtendedPictureDetails
  .PictureURLs
  .ExternalPictureURL
anyURI Conditionally The URL of a seller's self-hosted image(s).

Max length: 150.

DetailLevel: ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PictureDetails
  .ExternalPictureURL
anyURI Conditionally When returned this contains the original URL of a self-hosted pictures, associated with the item when the item was listed.

Max length: 500.

DetailLevel: ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Picture hosting.

Item.PictureDetails
  .GalleryErrorInfo
string Conditionally Indicates the reason the gallery generation failed, such as, URL for the image is not valid. This field is returned when GalleryStatus field is returned and does not appear when the gallery generation is successful.

Max length: 1024.
Item.PictureDetails
  .GalleryStatus
GalleryStatusCodeType Conditionally Indicates if the gallery image upload failed and gives a reason for the failure, such as 'InvalidUrl' or 'ServerDown'. It is not returned if the gallery image is uploaded successfully.

Applicable values: See GalleryStatus.
Code so that your app gracefully handles any future changes to this list.
Item.PictureDetails
  .GalleryType
GalleryTypeCodeType Conditionally This field is used to specify the type of picture gallery to use for the listing. If this field is omitted, a standard picture gallery is used for the listing. There is no listing fee for a standard picture gallery.

To use the Gallery Plus feature, you must include this field and set its value to Plus.

The Gallery image will be the first URL passed into the first PictureURL field, so if you want a specific picture to be the Gallery image, you should make sure you pass the URL for this picture in the first PictureURL field.

When revising a listing, if you disable the Gallery Plus feature by including the GalleryType field and setting its value to Gallery, the original feature fee for this feature will not be credited to the seller.


Applicable values:

CustomCode
(in/out) Reserved for internal use only.
Gallery
(in/out) This feature, which is free on all sites, adds a Gallery image in the search results. A Gallery image is an image that was uploaded and copied to EPS (eBay Picture Service). This copy is stored for 30 days or until the image is associated with a listing. Once the image is associated with a listing, the period is extended to 90 days after the item's sale_end date and is extended again if the item is relisted or used in subsequent listings. As part of storing a copy, EPS also makes additional sizes available (thumbnail, main image, supersize, popup, etc.), which are used by the various Gallery enhancements.

All images must comply to the Picture Requirements.
None
(in/out) Gallery is supported free on all sites. So this field is useful only for removing an existing feature setting when using RelistItem.
Plus
(in/out) Adds a Gallery Plus icon to the listing.

When Plus is selected in a request that specifies at least two images (using ItemType.PictureDetailsType.PictureURL), the Gallery Plus feature automatically includes a Gallery Showcase of all the listing's images.

The Gallery Showcase displays when hovering over or clicking on the listing's Gallery Plus icon in the search results. The Showcase window displays a large (400px x 400px) preview image which is first image specified PictureURL, as well as up to 11 (64 px x 64 px) selectable thumbnails for the remaining EPS images. Clicking on the preview image displays the item's listing page.

If Plus is selected and the request includes only one EPS image or any self-hosted images, the listing includes a Gallery Plus icon that, when hovered over or clicked, displays a large (400px x 400px) preview image of the item. Clicking the image displays the View Item page for that listing.

When using RelistItem or ReviseItem (item has no bids and more than 12 hours before the listing's end), Plus can be unselected in the request. However, the Plus fee will still apply if a previous request selected Plus. There is at most one Plus fee per listing.

When "Plus" is included in an item listing, the listing also automatically gets the Gallery functionality at no extra cost. "Gallery" does not need to be specified separately in the listing.

Listing images that are originally smaller than 400px x 400px are centered in the preview frame. Images that are originally larger than 400px x 400px are scaled down to 400px on their longest side (maintaining their original aspect ratio).

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PictureDetails
  .PictureSource
PictureSourceCodeType Conditionally The service hosting the pictures in PictureURL, if any. This information is primarily useful for Picture Manager subscribers, who pay a flat subscription fee instead of individual picture fees per listing. Only returned when PictureURL is returned.


Applicable values:

CustomCode
(in/out) Reserved for internal or future use.
EPS
(in/out) This value indicates that the image(s) specified in the PictureURL field(s) are hosted by eBay Picture Services.
Vendor
(in/out) This value indicates that the image(s) specified in the PictureURL field(s) are hosted by a third-party vendor. Note that if pictures are externally-hosted, they must be hosted on a site that is using the 'https' protocol.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ReturnAll.
Item.PictureDetails.PictureURL anyURI Conditionally,
repeatable: [0..24]
Contains the URL for a picture of the item. The URL can be from the eBay Picture Services (images previously uploaded) or from a server outside of eBay (self-hosted). You can pass in up to 24 picture URLs for each listing, but you cannot mix self-hosted and EPS-hosted URLs in the same listing. The UploadSiteHostedPictures call can be used to upload pictures to EPS. Note that if pictures are externally-hosted, they must be hosted on a site that is using the 'https' protocol. URLs using the 'http' protocol will not be allowed.

Sellers can have up to 24 pictures in almost any category at no cost. Motor vehicle listings are an exception. The number of included pictures in motor vehicle listings depend on the selected vehicle package (see Fees for selling vehicles on eBay Motors).

Note: If a URL contains spaces, those spaces can be replaced with %20. For example, https://example.com/my image.jpg must be submitted as https://example.com/my%20image.jpg to replace the space in the image file name. However, a semicolon character (;) cannot be replaced with %20, so a semicolon cannot be a part of the URL, as an error will occur. The Gallery image will be the first PictureURL in the array of PictureURL fields.

Note: All images, whether they are hosted by EPS or self-hosted, must comply with eBay picture requirements, including the requirement that all images must be at least 500 pixels on its longest side. If the image does not satisfy the 500 pixels requirement, the listing may be blocked. For more information about other requirements and tips for adding pictures to listings, see the Adding pictures to your listings help page. To specify multiple pictures, send each URL in a separate, PictureDetails.PictureURL element. The first URL passed in defaults to be the 'gallery image', and will be the first picture that is shown when a user lands on the View Item page.

If a listing uses a single, self-hosted picture (except in the case of a multiple-variation listing), the picture will be copied to eBay Picture Services (EPS) and the PictureDetails.PictureURL value returned by GetItem will be an EPS URL.

For VerifyAddItem only: You must include a picture even when using VerifyAddItem. If you don't have a image file, you can use the following fake eBay Picture Services URL (https://i2.ebayimg.com/abc/M28/dummy.jpg) with this call.

For ReviseItem and RelistItem only: To remove a picture when revising or relisting an item, specify PictureDetails with all the pictures that you want the listing to include. That is, you need to completely replace the original set of URLs with the revised set. You cannot remove all the PictureURL fields from a listing because each listing requires at least one picture.

Remember: The 'gallery image' will be the first PictureURL in the array of PictureURL fields. So, if the first image passed in when relisting/revising is different from when the listing was created, the 'gallery image' will be changed.

Note: For some large merchants, there are no limitations on when pictures can be added or removed from a fixed-price listing, even when the listing has had transactions or is set to end within 12 hours.
Max length: 500.

DetailLevel: ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Add pictures.

Item.PostalCode string Always Postal code of the place where the item is located. This value is used for proximity searches. To remove this value when revising or relisting an item, use DeletedField. If you do not specify PostalCode, you must specify Item.Location. If you specify PostalCode, but do not specify Item.Location, then Item.Location is given a default value derived from the postal code.

Note: As of late January 2020, the displayed postal code returned in GetItem is now masked to all users except for the seller of the item. Different countries will mask postal/zip codes in slightly different ways, but an example would be 951**.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PrimaryCategory CategoryType Always This container is used in an Add/Revise/Relist call to set the primary listing category. This field is conditionally required in an Add call unless the seller successfully uses the ProductListingDetails container to find an eBay catalog product match. When the seller successfully uses an eBay catalog product to create a listing, the listing title, listing description, Item Specifics, listing category, and stock photo defined in the catalog product is used to create the listing.

If you do not know the appropriate eBay category for your product, you can use the GetSuggestedCategories call. Once you know your category, and want to know which listing features it supports, you can use the GetCategoryFeatures call. To discover required, recommended, and optional Item Specifics for a category, use the getItemAspectsForCategory method of the Taxonomy API.

If you do use an eBay catalog product, it is advised that you do not include this field, as any primary category ID you specify in this field may get dropped if this category is different than the primary category defined in the eBay catalog product.

For ReviseItem only: When revising a listing, you can change the primary category only if an auction listing has no bids or a multiple-quantity, fixed-price listing has no sales, and the listing does not end within 12 hours. If you change the listing category, any Item Specifics that were previously specified may be dropped from the listing if they aren't valid for the new category.

When you list an event ticket on the US site, you must specify one of the leaf categories under the Tickets & Experiences meta category.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Applying Categories
    Maintaining Category Data

Item.PrimaryCategory
  .CategoryID
string Always This string value is the unique identifier of an eBay category. In GetItem and related calls, see the CategoryName field for the text name of the category. The parent category of this eBay category is only shown in GetCategories.

In an Add call, the PrimaryCategory.CategoryID is conditionally required unless the seller successfully uses the ProductListingDetails container to find an eBay catalog product match. When the seller successfully uses an eBay catalog product to create a listing, the listing title, listing description, item specifics, listing category, and stock photo defined in the catalog product is used to create the listing.

In an Add/Revise/Relist call, the SecondaryCategory.CategoryID is conditionally required if a Secondary Category is used. Using a Secondary Category can incur a listing fee.

For ReviseItem only: Previously, removing the listing from a secondary category was only possible within 12 hours of the listing's scheduled end time when an auction listing had no active bids or a multiple-quantity, fixed-price listing had no items sold, but this restriction no longer exists. Now, the secondary category can be dropped for any active listing at any time, regardless of whether an auction listing has bids or a fixed-price listing has sales. To drop a secondary category, the seller passes in a value of 0 in the SecondaryCategory.CategoryID field.

Max length: 10.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PrimaryCategory
  .CategoryName
string Always This string value is the display name of the eBay primary category, as it would appear on the eBay site. In GetItem, this will be a fully-qualified category name (e.g., Collectibles:Decorative Collectibles:Hummel, Goebel).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.PrivateListing boolean Always A true value in this field indicates that the listing is private. Sellers may want to use this option when they believe that a listing's potential bidders/buyers would not want their obfuscated user IDs (and feedback scores) exposed to other users.

For ReviseItem/ReviseFixedPriceItem: The seller will not be able change this setting if the listing has any pending bids, any pending best offers, previous sales (for multiple-quantity, fixed-price listing), or if the listing will end within 12 hours.


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ProductListingDetails ProductListingDetailsType Conditionally This container is used to provide one or more product identifiers for a product, and if desired by the seller, eBay will use the identifier(s) of the product to try to match it to a defined product in the eBay catalog. If a seller's product is matched to an eBay catalog product, the product details associated with that catalog product will be prefilled for the listing. Product details defined for a catalog product include the product title, product description, product aspects, and stock image(s) of the product (if available).

In some eBay categories, one or more product identifier types (e.g. UPC or ISBN) may be required, but the category may not have any eBay catalog products defined, or the category does not allow listings to be created using a catalog product. Note that the GetCategoryFeatures call can be used to retrieve supported/required product identifier types.

Note: If a product identifier type is required, the corresponding field must be used, even if the seller is not interested in finding an eBay catalog product match. A large percentage of eBay US categories require one or more product identifier types when listing an item. See the Structured Data - Product Identifiers help page for more information on which eBay US categories require which product identifier types. If known, an ePID (specified through the ProductReferenceID field) is always the best bet to find an eBay catalog product match, although an EAN, ISBN, UPC, or Brand/MPN pair can also be used in an attempt to find a catalog product match. If a Brand/MPN pair is required for the product, these values must be input through the BrandMPN container.
When you use ProductListingDetails, in an Add/Revise/Relist call, you must specify at least one GTIN, a ProductReferenceID (also known as an ePID), or a Brand/MPN pair. If you specify more than one GTIN value, eBay uses the first one that matches a product in eBay's catalog.

For ReviseItem and RelistItem only: When you revise a listing, if it has bids or it ends within 12 hours, you cannot change the product identifier and you cannot remove existing product listing details data. However, you can change or add preferences such as IncludeStockPhotoURL, UseStockPhotoURLAsGallery, and IncludePrefilledItemInformation. To delete all catalog data when you revise or relist an item, specify Item.ProductListingDetails in DeletedField and don't pass ProductListingDetails in the request.

DetailLevel: ItemReturnAttributes, ReturnAll.
Item.ProductListingDetails
  .BrandMPN
BrandMPNType Conditionally This container is used if the seller wants to, or is required to identify a product using an Brand/Manufacturer Part Number (MPN) pair. The seller can use the GetCategoryFeatures call to see if a Brand/MPN pair is supported/required for a category. Both the Brand and MPN fields are required if the category/product requires an MPN value.

If the IncludeeBayProductDetails field is omitted or included and set to true, eBay will use the Brand/MPN pair to try and find a matching eBay catalog product. If a match is found, the listing will pick up the product details of the catalog product, including the product title, product description, item specifics, and stock photo. If the seller is passing in an ePID through the ProductReferenceID field, this field is not needed, as all product identifiers associated with the catalog product will get picked up automatically by the listing if a matching catalog product is found.

This container is only applicable for single-variation listings. For multiple-variation listings, if the category requires Brand/MPN pairs, the product brand (shared by all variations in this listing) is passed in through the item-level item specifics (Item.ItemSpecifics.NameValueList), and the MPN value for each variation in the listing is passed in through the variation-level item specifics (Variation.VariationSpecifics.NameValueList).

Note: If the listing is being posted to a category that requires or recommends a Brand and MPN value, the Brand and MPN values for the product should always be passed in through separate ItemSpecifics.NameValueList containers since the Brand and MPN values passed in through the ProductListingDetails.BrandMPN will not get picked up by the generated/revised listing unless the the Brand/MPN pair is successfully matched to an eBay catalog product. If an MPN doesn't exist for a product, or the seller does not have it available, the seller must pass in the text that can be found in the ProductDetails.ProductIdentifierUnavailableText field of the GeteBayDetails response. To get the ProductDetails container to return in the GeteBayDetails response, ProductDetails should be included as a DetailName value in the call request.


DetailLevel: ItemReturnAttributes, ReturnAll.
Item.ProductListingDetails
  .BrandMPN.Brand
string Conditionally The brand of the product. Both Brand and MPN should be specified if the BrandMPN container is used, or an error may occur. If Brand is a required or recommended item specific for a category, but an MPN is not applicable to the category/product, the Brand value should be specified in an Item.ItemSpecifics.NameValueList container instead.

Note: The BrandMPN container is not applicable for multiple-variation listings. For multiple-variation listings that use MPNs, the Brand value should be specified through an ItemSpecifics.NameValueList container, and the Manufacturer Part Numbers (MPNs) for each product variation should be specified through a VariationSpecifics.NameValueList container.
Max length: 65.
Item.ProductListingDetails
  .BrandMPN.MPN
string Conditionally The manufacturer part number of the product. Use the value specified by the manufacturer. Both Brand and MPN must be specified if the BrandMPN container is used or an error may occur.

If the listing is being posted to a category that expects an MPN value, but one doesn't exist for the product, the seller must pass in the text that can be found in the ProductDetails.ProductIdentifierUnavailableText field of the GeteBayDetails response. To get the ProductDetails container to return in the GeteBayDetails response, ProductDetails should be included as a DetailName value in the call request.

Note: The BrandMPN container is not applicable for multiple-variation listings. For multiple-variation listings that use MPNs, the Brand value should be specified through an ItemSpecifics.NameValueList container, and the Manufacturer Part Numbers (MPNs) for each product variation should be specified through a VariationSpecifics.NameValueList container.
Max length: 65.
Item.ProductListingDetails
  .Copyright
string Conditionally,
repeatable: [0..*]
Copyright statement indicating the source of the product information. This information will be included in the listing if the seller used an eBay catalog product to list the item.

DetailLevel: ItemReturnAttributes, ReturnAll.
Item.ProductListingDetails.EAN string Conditionally This field is used if the seller wants to, or is required to identify a product using an EAN (European Article Number) value. An EAN is a unique 8 or 13-digit identifier that many industries (such as book publishers) use to identify products. The seller can use the GetCategoryFeatures call to see if an EAN is supported/required for a category.

Note: The EAN (and EAN values) are typically only applicable to European products listed on European eBay marketplaces. If a US seller is selling a US-based product (with a UPC value) on a European site (such as eBay UK), instead of using the UPC field, the seller will use the EAN field to pass in the UPC value.
If the IncludeeBayProductDetails field is omitted or included and set to true, eBay will use the EAN value passed into this field to try and find a matching eBay catalog product. If a match is found, the listing will pick up the product details of the catalog product, including the product title, product description, item specifics, and stock photo. If the seller is passing in an ePID through the ProductReferenceID field, this field is not needed, as all product identifiers will get picked up automatically by the listing if a matching catalog product is found.

This field is only applicable for single-variation listings. For multiple-variation listings, if the category/product requires an EAN value, this value should be passed into the Variation.VariationProductListingDetails.EAN field instead.

Note: If the listing is being posted to a category that expects an EAN value, but one doesn't exist for the product, the seller must pass in the text that can be found in the ProductDetails.ProductIdentifierUnavailableText field of the GeteBayDetails response. To get the ProductDetails container to return in the GeteBayDetails response, ProductDetails should be included as a DetailName value in the call request.

DetailLevel: ItemReturnAttributes, ReturnAll.
Item.ProductListingDetails
  .IncludeeBayProductDetails
boolean Conditionally This boolean field controls whether or not an eBay catalog product is used to create or revise a listing. If an ePID or GTIN value is provided through the ProductListingDetails container when adding, revising, or relisting an item, the default behavior is for eBay to try and find a match for the product in the eBay catalog, and then automatically create/revise the listing using the product title, product description, item specifics, and stock photo defined for the catalog product.

If the seller wants to use an eBay catalog product to create/revise a listing, the seller can include this field and set its value to true, or just omit this field, as its default value is true. If a seller doesn't want use an eBay catalog product to create/revise their listing, this field should be included and set to false. If the seller declines to use an eBay catalog product, they will be required to pass in their own listing title, listing description, item specifics, a listing category, and at least one picture.


DetailLevel: ItemReturnAttributes, ReturnAll.
Item.ProductListingDetails
  .IncludeStockPhotoURL
boolean Conditionally If this value is true, the listing will use the eBay catalog product's stock photo. In an Add/Revise/Relist call, this field is set to true by default. If you will be using an eBay catalog product to list your item, it is always advised to include the stock photo. Sellers can also add their own pictures using one or more Item.PictureDetails.PictureURL fields. Seller photos are particularly recommended for used and modified products to give prospective buyers a clear sense of exactly what they are purchasing. In GetItem and other 'Get' calls, the URL of the stock photo will be returned in the StockPhotoURL field.


DetailLevel: ItemReturnAttributes, ReturnAll.

See Using eBay stock photos.

Item.ProductListingDetails
  .ISBN
string Conditionally This field is used if the seller wants to, or is required to identify a product using an ISBN (International Standard Book Number) value. An ISBN is a unique identifer for books. Both 10 and 13-character ISBNs are supported. When specifying a 13-character ISBN, the value must begin with either '978' or '979'. The seller can use the GetCategoryFeatures call to see if an ISBN is supported/required for a category.

If the IncludeeBayProductDetails field is omitted or included and set to true, eBay will use the ISBN value passed into this field to try and find a matching eBay catalog product. If a match is found, the listing will pick up the product details of the catalog product, including the product title, product description, item specifics, and stock photo. If the seller is passing in an ePID through the ProductReferenceID field, this field is not needed, as all product identifiers will get picked up automatically by the listing if a matching catalog product is found.

This field is only applicable for single-variation listings. For multiple-variation listings, if the category/product requires an ISBN value, this value should be passed into the Variation.VariationProductListingDetails.ISBN field instead.

Note: If the listing is being posted to a category that expects an ISBN value, but one doesn't exist for the product, the seller must pass in the text that can be found in the ProductDetails.ProductIdentifierUnavailableText field of the GeteBayDetails response. To get the ProductDetails container to return in the GeteBayDetails response, ProductDetails should be included as a DetailName value in the call request.

DetailLevel: ItemReturnAttributes, ReturnAll.
Item.ProductListingDetails
  .ProductReferenceID
string Conditionally In an Add/Revise/Relist call, this field is used to pass in the eBay Product ID (e.g. ePID), which is the unique identifier of an eBay catalog product. Although an eBay catalog product match can be found using one or more GTIN values, passing in an ePID value is the best way to try and discover the appropriate eBay catalog product.

This field is also returned in GetItem if the listing is associated with a eBay catalog product.

Max length: 38 (42 with "EPID").

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ProductListingDetails
  .StockPhotoURL
anyURI Conditionally The full URL for the eBay catalog product's stock photo. This field is only returned if the seller used an eBay catalog product to list the item, and the IncludeStockPhotoURL field was set to true.

DetailLevel: ItemReturnAttributes, ReturnAll.
Item.ProductListingDetails.UPC string Conditionally This field is used if the seller wants to, or is required to identify a product using a UPC (Universal Product Code) value. A UPC is a commonly used identifer for many different products. The seller can use the GetCategoryFeatures call to see if a UPC is supported/required for a category.

Note: The UPC (and UPC values) are typically only applicable to US products listed on US eBay marketplace. If a European seller is selling a European-based product (with an EAN value) on the US site, instead of using the EAN field, the seller will use the UPC field to pass in the EAN value.
If the IncludeeBayProductDetails field is omitted or included and set to true, eBay will use the UPC value passed into this field to try and find a matching eBay catalog product. If a match is found, the listing will pick up the product details of the catalog product, including the product title, product description, item specifics, and stock photo. If the seller is passing in an ePID through the ProductReferenceID field, this field is not needed, as all product identifiers will get picked up automatically by the listing if a matching catalog product is found.

This field is only applicable for single-variation listings. For multiple-variation listings, if the category/product requires a UPC value, this value should be passed into the Variation.VariationProductListingDetails.UPC field instead.

Note: If the listing is being posted to a category that expects a UPC value, but one doesn't exist for the product, the seller must pass in the text that can be found in the ProductDetails.ProductIdentifierUnavailableText field of the GeteBayDetails response. To get the ProductDetails container to return in the GeteBayDetails response, ProductDetails should be included as a DetailName value in the call request.

DetailLevel: ItemReturnAttributes, ReturnAll.
Item.ProductListingDetails
  .UseStockPhotoURLAsGallery
boolean Conditionally If this value is true, the listing will use the eBay catalog product's stock photo as the Gallery thumbnail photo. In an Add/Revise/Relist call, this field is set to true by default. If this field is set to true, the IncludeStockPhotoURL field must also be set to true or this field will have no effect. Sellers can also add their own pictures using one or more Item.PictureDetails.PictureURL fields, but none of these photos will be the Gallery thumbnail photo.


DetailLevel: ItemReturnAttributes, ReturnAll.

See Stock photo as gallery image.

Item.ProxyItem boolean Conditionally Some listings on the eBay platform originate from eBay affiliates. Depending on the relationship the affiliate has with eBay, there are times when the affiliate retains ownership of the listing. When this occurs the representation of the listing on eBay is considered a proxy item. Proxy items can only be edited using API requests from the applications that originally listed them.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Quantity int Always For AddItem family of calls: The Quantity value for auction listings must always be 1. For a fixed-price listing, the Quantity value indicates the number of identical items the seller has available for sale in the listing. If this field is not included when creating a new fixed-price listing, quantity defaults to '1'. If variations are specified in AddFixedPriceItem or VerifyAddFixedPriceItem, the Item.Quantity is not required since the quantity of variations is specified in Variation.Quantity instead. See the Creating a listing with variations eBay Help page for more information on variations.

For ReviseItem and ReviseFixedPriceItem: This value can only be changed for a fixed-price listing with no variations. The quantity of variations is controlled in the Variation.Quantity field and the Item.Quantity value for an auction listing should always be 1.

For RelistItem and RelistFixedPriceItem: Like most fields, when you use RelistItem or RelistFixedPriceItem, Quantity retains its original value unless you specifically change it. This means that the item is relisted with the value that was already in Quantity, not with the remaining quantity available. For example, if the original Quantity value was 10, and three items have been sold, eBay sets the relisted item's Quantity to 10 by default, and not 7. So, we strongly recommend that you always set Quantity to the correct value (your actual quantity available) in your relist requests.

When eBay auto-renews a GTC listing (ListingDuration = GTC) on your behalf, eBay relists with correct quantity available.

For GetSellerEvents: Quantity is only returned for listings where item quantity is greater than 1.

For GetItem and related calls: This is the total of the number of items available for sale plus the quantity already sold. To determine the number of items available, subtract SellingStatus.QuantitySold from this value.

For order line item calls with variations: In GetItemTransactions, Item.Quantity is the same as GetItem (the total quantity across all variations). In GetSellerTransactions, Transaction.Item.Quantity is the total quantity of the applicable variation (quantity available plus quantity sold).

Note: For the US site, new eBay sellers are subject to Seller Limits, which limit the quantity of items that may be listed and/or the total cumulative value of these listings. While subject to these selling limits, an eBay seller can use the GetMyeBaySelling call to retrieve both the remaining number of listings they can create and the remaining cumulative value of these listings. These values are shown in the Summary.QuantityLimitRemaining and Summary.AmountLimitRemaining fields in the GetMyeBaySelling response. If a call to add an item or revise an item would result in the exceeding of these limits, the add item or revise item call will fail. These fields will only be returned if the seller is subject to seller limits.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.QuantityAvailableHint QuantityAvailableHintCodeType Conditionally Indicates the type of message that will be returned describing the quantity available for the item.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
Limited
(out) The message "Limited quantity available" is shown in the web flow (e.g., for a flash sale or a Daily Deal).
MoreThan
(out) The message "More than 10 available" is shown in the web flow. 10 is the value of QuantityThreshold tag based on the seller's preference.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.QuantityThreshold int Conditionally The quantity threshold above which the seller prefers not to show the actual quantity available. Returned when the quantity available is greater than the value of quantity threshold. Currently, 10 is the only available value for this threshold.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReasonHideFromSearch ReasonHideFromSearchCodeType Conditionally This field is returned only when the listing is currently being hidden from any searches occurring on eBay. Listings may be hidden from search if an active listing is currently out of stock or if the listing has been determined by eBay to be a duplicate listing.

Applicable values:

DuplicateListing
(out) This value indicates that the listing is being hidden from search on the eBay site because the listing has been determined by eBay to be a duplicate listing.

This enumeration value is associated with eBay Duplicate Listings Policy, which is applicable on the US, CA, CA-FR, and eBay Motors (Parts and Accessories only) sites. Event Tickets, Real Estate, and Motor Vehicle categories are excluded from this policy. For more information, read eBay's Duplicate Listings Policy help page.
OutOfStock
(out) This value indicates that the listing is currently hidden from search because the quantity in the listing is zero. However, the listing is still alive and will reappear in the search results when the quantity is set to something greater than zero. The 'Out-of-stock' option is set by the seller at the account level. This option can be enabled in My eBay Site Preferences, or the seller can use the OutOfStockControlPreference field in the SetUserPreferences call.

Code so that your app gracefully handles any future changes to this list.
Item.Regulatory RegulatoryType Conditionally This container is used by the seller to provide Energy Efficiency Label information, hazardous material related information, and the repair score for the listing.
Item.Regulatory
  .EconomicOperator
EconomicOperatorType Conditionally This container provides Economic Operator (EO) information about the manufacturer and/or supplier of the item. The EO is a corporate entity that is related to, has some responsibility for, the product being listed for sale. For additional information, see What is an economic operator?.
Item.Regulatory
  .EconomicOperator.CityName
string Conditionally The city of the registered Economic Operator's street address.
Max length: 50 characters.
Item.Regulatory
  .EconomicOperator.CompanyName
string Conditionally The company name of the registered Economic Operator.
Max length: 50 characters..
Item.Regulatory
  .EconomicOperator.Country
CountryCodeType Conditionally This defines the list of valid country codes, adapted from http://www.iso.org/iso/country_codes, ISO 3166-1 country code. List elements take the following form to identify a two-letter code with a short name in English, a three-digit code, and a three-letter code: For example, the entry for Japan includes Japan, 392, JPN. Short codes provide uniform recognition, avoiding language-dependent country names. The number code is helpful where Latin script may be problematic. Not all listed codes are universally recognized as countries, for example: code AQ is Antarctica, 010, ATA

Applicable values: See Country.
Code so that your app gracefully handles any future changes to this list.
Item.Regulatory
  .EconomicOperator.Email
string Conditionally The registered Economic Operator's business email address.
Max length: 128 characters for this field .
Item.Regulatory
  .EconomicOperator.Phone
string Conditionally The registered Economic Operator's business phone number.
Max length: 50 characters.
Item.Regulatory
  .EconomicOperator.PostalCode
string Conditionally The postal code of the registered Economic Operator's street address.
Max length: 50 characters.
Item.Regulatory
  .EconomicOperator
  .StateOrProvince
string Conditionally The state or province of the registered Economic Operator's street address.
Max length: 50 characters.
Item.Regulatory
  .EconomicOperator.Street1
string Conditionally The first line of the registered Economic Operator's street address.
Max length: 50 characters.
Item.Regulatory
  .EconomicOperator.Street2
string Conditionally The second line, if any, of the registered Economic Operator's street address. This field is not always used, but can be used for 'Suite Number' or 'Apt Number'.
Max length: 50 characters..
Item.Regulatory
  .EnergyEfficiencyLabel
EnergyEfficiencyType Conditionally This container provides information about the energy efficiency for certain durable goods.
Note: As a part of Digital Services Act (DSA) requirements, all sellers who list products in Germany (DE) must provide Energy Efficiency Label information and Product Information Sheets for listings for certain durable goods.
Item.Regulatory
  .EnergyEfficiencyLabel
  .ImageDescription
string Conditionally A brief verbal summary of the information included on the Energy Efficiency Label for an item.
For example, On a scale of A to G the rating is E.
As with all strings, you need to escape reserved characters such as ampersand. This field is required if an Energy Efficiency Label is provided.
Max length: 280.
Item.Regulatory
  .EnergyEfficiencyLabel
  .ImageURL
anyURI Conditionally The URL to the Energy Efficiency Label image that is applicable to an item. This field is required if an Energy Efficiency Label is provided. The URL provided must be an eBay Picture Services (EPS) URL only. You can upload pictures to eBay Picture Services via the UploadSiteHostedPictures call.
Item.Regulatory
  .EnergyEfficiencyLabel
  .ProductInformationsheet
anyURI Conditionally The URL to the Product Information Sheet that provides complete manufacturer-provided efficiency information about an item. This field is required if an Energy Efficiency Label is provided. The URL provided must be an eBay Picture Services (EPS) URL only. You can upload pictures to eBay Picture Services via the UploadSiteHostedPictures call.
Item.Regulatory.Hazmat HazmatType Conditionally This container is used by the seller to provide hazardous material information for the listing. Three elements are required to complete the Hazmat section of a listing: Pictograms, SignalWord, and Statements. The fourth element, Component, is optional. For more information, see Specifying hazardous material related information.
Item.Regulatory.Hazmat
  .Component
string Conditionally This field is used by the seller to provide component information for the listing. For example, component information can provide the specific material of Hazmat concern.
Max length: 120.
Item.Regulatory.Hazmat
  .Pictograms
PictogramsType Conditionally This container is used by the seller to provide pictograms for the listing. This field is required if hazmat information is supplied.
Item.Regulatory.Hazmat
  .Pictograms.Pictogram
string Conditionally,
repeatable: [0..4]
This field sets the pictogram code(s) for Hazard Pictogram(s) for the listing. If your product contains hazardous substances or mixtures, please select the values corresponding to the hazard pictograms that are stated on your product's Safety Data Sheet. The selected hazard information will be displayed on your listing. The seller specifies the identifier of each pictogram in this field. A separate Pictogram field is required for each Hazard pictogram. Note: Use the getHazardousMaterialsLabels method in the Metadata API to find supported values for a specific marketplace/site. For sample values, see Pictogram sample values.
Item.Regulatory.Hazmat
  .SignalWord
string Conditionally This field sets the signal word for hazardous materials in the listing. If your product contains hazardous substances or mixtures, please select a value corresponding to the signal word that is stated on your product's Safety Data Sheet. The selected hazard information will be displayed on your listing. This field is required if hazmat information is supplied. Example values include:
  • Danger
  • Warning
Note: Use the getHazardousMaterialsLabels method in the Metadata API to find supported values for a specific marketplace/site. For additional information, see Signal word information.
Item.Regulatory.Hazmat
  .Statements
StatementsType Conditionally This container is used by the seller to provide hazard statements for the listing. This field is required if hazmat information is supplied.
Item.Regulatory.RepairScore double Conditionally This field represents the repair index for the listing.

The repair index identifies the manufacturer's repair score for a product (how easy is it to repair the product). This field is a floating point value between 0 and 10 but may only have one digit beyond the decimal point, for example: 7.9
Note: 0 should not be used as a default value, as it implies that the product is not repairable.
Item.RelistParentID long Conditionally The identifier of the original listing that contained the item before the item was relisted. This field is only returned for an item that was relisted.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReservePrice AmountType (double) Conditionally This field is used to set the lowest price at which the seller is willing to sell an auction item. The StartPrice value must be lower than the ReservePrice value. Note that setting a reserve price will incur a listing fee of $5 or 7.5% of the reserve price, whichever is greater, and this fee is charged regardless of whether or not the auction item has a qualifying, winning bidder.

As long as no bidder has matched your reserve price, and the scheduled end time of the auction is 12 or more hours away, you can lower or remove the reserve price. However, even if you remove the reserve price from an active listing, you will still be charged the fee and not eligible for a credit.

In 'get' calls that retrieve item data, the ReservePrice field will only be returned to the seller of that particular auction item, and only if a reserve price has been set up. The reserve price is never exposed to anyone other than the seller of the item.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Revise a US eBay motors listing
    Setting a reserve price (eBay help topic)
    Fees for optional listing upgrades (eBay help topic)

Item.ReservePrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field is used to set the lowest price at which the seller is willing to sell an auction item. The StartPrice value must be lower than the ReservePrice value. Note that setting a reserve price will incur a listing fee of $5 or 7.5% of the reserve price, whichever is greater, and this fee is charged regardless of whether or not the auction item has a qualifying, winning bidder.

As long as no bidder has matched your reserve price, and the scheduled end time of the auction is 12 or more hours away, you can lower or remove the reserve price. However, even if you remove the reserve price from an active listing, you will still be charged the fee and not eligible for a credit.

In 'get' calls that retrieve item data, the ReservePrice field will only be returned to the seller of that particular auction item, and only if a reserve price has been set up. The reserve price is never exposed to anyone other than the seller of the item.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ReturnPolicy ReturnPolicyType Conditionally Describes the seller's return policy. Most categories on most eBay sites require the seller to clearly specify whether or not returns are accepted (see ReturnsAcceptedOption).
Note: As a part of Digital Services Act (DSA) requirements, as of April 3, 2023, buyers in the EU must be allowed to return an item within 14 days or more, unless the item is exempt. Where applicable, sellers should update their return policies to reflect this requirement of accepting returns from EU buyers. This update can be made through the ReturnPolicy container or through a return business policy that is referenced through the SellerProfiles.SellerReturnProfile container.
Note: If you are using a return business policy set up through My eBay or via the Account API, then you should not populate the fields in this ReturnPolicy container. Instead, indicate your return policy using the SellerProfiles.SellerReturnProfile container.

However, if you do not configure a return policy, all the fields in this ReturnPolicy container that are marked conditional must be populated in your request.

For the AddItem family of calls: Required for most categories on most sites. Use ReturnPolicyEnabled in GetCategoryFeatures to determine which categories require this field. Also use ReturnPolicyDetails in GeteBayDetails to determine which ReturnPolicy fields can be used on each site.

Australia (AU) and US eBay Motors Parts and Accessories categories typically support but do not require a return policy. (However, we strongly recommend that you specify a clear return policy whenever possible.)

For ReviseItem only: If the listing has bids or sales and it ends within 12 hours, you can't change the return policy details. If the listing is a GTC listing that has sales or ends within 12 hours (one or the other, but not both), you can add a return policy to the GTC listing (but you can't change return policy details if already present). If the listing has no bids or sales and more than 12 hours remain before the listing ends, you can add or change the return policy. When you revise your return policy, you only need to specify the fields you want to add or change. You don't need to specify all the other ReturnPolicy fields again. The other fields will retain their existing settings.

For the GetItem family of calls: Only returned if the site you sent the request to supports the seller's return policy. Typically, the return policy details are only returned when the request is sent to the listing site.

Note: The GeteBayDetails call can be used to retrieve site-wide return policy metadata, but it is recommended that sellers use the GetCategoryFeatures call instead, as this call was recently updated to retrieve category-level metadata for both domestic and international return policies.
Note: In May 2018, eBay added the ability to create a separate international return policy for items that are shipped to international customers. If a seller does not add a separate international return policy, the settings in the domestic return policy will be used instead for international returns. For more information on setting separate domestic and international return policies, see the International returns policy help topic. For the international equivalent of this field, see the InternationalRefundMethodValues field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Specify a return policy.

Item.ReturnPolicy.Description string Conditionally This field contains the seller's detailed explanation for their return policy and is displayed in the Return Policy section of the View Item page. This field is valid in only the following marketplaces (the field is otherwise ignored):
  • Germany (DE)
  • Austria (AT)
  • France (FR)
  • Italy (IT)
  • Spain (ES)
Where valid, sellers can use this field to add details about their return policies. eBay uses this text string as-is in the additional details section of the View Item page. Avoid HTML and avoid character entity references (such as &pound; or &#163;). If you include special characters in the return policy description, use the literal UTF-8 or ISO-8559-1 character (e.g. £).

For AddItem, VerifyAddItem, and RelistItem: If the seller accepts returns (ReturnsAcceptedOption = ReturnsAccepted) but does not specify this field when listing the item, GetItem returns this as an empty node.

For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Max length: 8000 (for DE, AT); 5000 (for FR, IT, ES).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReturnPolicy
  .InternationalRefundOption
token Conditionally This field indicates how the seller compensates international buyers for returns. MoneyBack is the only supported value for all marketplaces except for the US. On the US marketplace, you can set this value to either MoneyBack or MoneyBackOrReplacement. MoneyBackOrReplacement can be used by sellers that have the depth of inventory to support an exchange for an identical item. However, ultimately, it is up to the buyer on whether they want money back or a replacement item.

For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Note: If a seller does not add a separate international return policy, the settings in the domestic return policy will be used instead. So if this field is not used in an add/revise/relist call, the refund option(s) for international returns will default to the value specified in the RefundOption field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See International Refund Methods (in GetCategoryFeatures) for supported international refund value for each site and category.



Applicable values: See RefundOptionsCodeType
Item.ReturnPolicy
  .InternationalReturnsAcceptedOption
token Conditionally This field is conditionally required if a seller wants to use a separate return policy for international returns. The value in this field indicates whether or not the seller accepts returns from international buyers.

Applicable values are ReturnsAccepted or ReturnsNotAccepted. When set to ReturnsAccepted, this option indicates the seller allows international buyers to return items. Specify ReturnsNotAccepted for a listing if returns are not accepted from international buyers.

On the eBay DE, IE, and UK, registered business sellers must accept returns for fixed-price items (including auction items with Buy It Now and any other fixed price formats) when the category requires a return policy. On some European sites, such as eBay Germany (DE), registered business sellers are required to accept returns. Use the Trading call GetUser to determine the status of an eBay business seller in DE, IE, and UK. Review the User.SellerInfo.SellerBusinessType field in the response.

For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Note: If a seller does not add a separate international return policy, the settings in the domestic return policy will be used instead. So if this field is not used in an add/revise/relist call, the return accepted value for international returns will default to the value specified in the ReturnsAcceptedOption field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See International Returns Accepted Values (in GetCategoryFeatures) for supported international returns accepted values for each site and category.



Applicable values: See ReturnsAcceptedOptionsCodeType
Item.ReturnPolicy
  .InternationalReturnsWithinOption
token Conditionally This field is conditionally required if a seller is using a separate return policy for international returns, and is accepting international returns. The value in this field indicates the number of days that an international buyer has to return an item. The time period begins on the day that the buyer receives the item. Most marketplaces and categories support 30-day and 60-day return periods. eBay sites often set 30-days as the default value for this field and sellers are obligated to honor the values that are set for a listing.

Applicable values: Retrieve the values supported by a marketplace and category by calling GetCategoryFeatures with FeatureID set to InternationalReturnsDurationValues, then see the values returned under the Category.InternationalReturnsDurationValues container in the response.

For AddItem, VerifyAddItem, and RelistItem: If the seller accepts international returns (InternationalReturnsAcceptedOption is set to ReturnsAccepted) but does not specify this field for a listing, eBay sets a default value (often Days_30) and the seller is obligated to honor this setting.

For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Note: If a seller does not add a separate international return policy, the settings in the domestic return policy will be used instead. So if this field is not used in an add/revise/relist call, the return period for international returns will default to the value specified in the ReturnsWithinOption field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See International Return Durations (in GetCategoryFeatures) for supported international return durations for each site and category.



Applicable values: See ReturnsWithinOptionsCodeType
Item.ReturnPolicy
  .InternationalShippingCostPaidByOption
token Conditionally This field is conditionally required if a seller is using a separate return policy for international returns, and is accepting international returns. The value in this field specifies whether the buyer or the seller pays for international return shipping charges. Accepted values are Buyer or Seller. eBay sites often set Seller as the default value for this field, and sellers are obligated to honor the values that are set for a listing.

Depending on the seller's return policy and the specifics of a return, either the buyer or the seller can be responsible for the return shipping costs. Note that the seller is always responsible for return shipping costs for SNAD-related issues or for late shipments.

For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Note: If a seller does not add a separate international return policy, the settings in the domestic return policy will be used instead. So if this field is not used in an add/revise/relist call, return shipping cost payee for international returns will default to the value specified in the ShippingCostPaidByOption field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Return Shipping Cost Payee Values (in GetCategoryFeatures) for supported international return shipping cost payee values for each site and category.



Applicable values: See ShippingCostPaidByOptionsCodeType
Item.ReturnPolicy.Refund string Conditionally Display string that buyer applications can use to present RefundOption in a more user-friendly format to buyers. For example, in GetItem and related calls, this value is usually localized and can contain spaces. If necessary, you can predict the choice of values based on the Refund.Description options returned by GeteBayDetails.

This field is applicable to only the US marketplace and is not applicable as input to the Add/Revise/Relist family of calls. (Use RefundOption instead.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReturnPolicy.RefundOption token Conditionally This field indicates how the seller compensates buyers for returns. MoneyBack is the only supported value for all marketplaces except for the US. On the US marketplace, you can set this value to either MoneyBack or MoneyBackOrReplacement. MoneyBackOrReplacement can be used by sellers that have the depth of inventory to support an exchange for an identical item. However, ultimately, it is up to the buyer on whether they want money back or a replacement item.

For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Note: If a seller ships internationally, and wants to define and use a separate international returns policy, the international equivalent of this field is the InternationalRefundOption field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Domestic Refund Methods (in GetCategoryFeatures) for supported domestic refund value for each site and category.



Applicable values: See RefundOptionsCodeType
Item.ReturnPolicy
  .ReturnsAccepted
string Conditionally Display string that buyer applications can use to present ReturnsAcceptedOption in a more user-friendly format to buyers. For example, in GetItem and related calls, this value is usually localized and can contain spaces.

If necessary, you can predict the choice of values based on the ReturnsAccepted.Description options returned by GeteBayDetails.

Not applicable as input to the AddItem family of calls. (Use ReturnsAcceptedOption instead.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReturnPolicy
  .ReturnsAcceptedOption
token Conditionally This required field indicates whether or not the seller accepts returns.

Applicable values are ReturnsAccepted or ReturnsNotAccepted. When set to ReturnsAccepted, this option indicates the seller allows items to be returned. Specify ReturnsNotAccepted for a listing if returns are not accepted.

On the eBay DE, IE, and UK marketplaces, registered business sellers must accept returns for fixed-price items (including auction items with Buy It Now and any other fixed price formats) when the category requires a return policy. On some European sites, such as eBay Germany (DE), registered business sellers are required to accept returns. Use the Trading call GetUser to determine the status of an eBay business seller in DE, IE, and UK. Review the User.SellerInfo.SellerBusinessType field in the response.

Note: In order for Top-Rated sellers to receive a Top-Rated Plus seal for their listings, returns must be accepted for their items (ReturnsAcceptedOption = ReturnsAccepted) and handling time should be set to zero-day (same-day shipping) or one-day shipping. Set the handling time (in days) using the Item.DispatchTimeMax field.
For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Note: If a seller ships internationally, and wants to define and use a separate international returns policy, the international equivalent of this field is the InternationalReturnsAcceptedOption field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Domestic Returns Accepted Values (in GetCategoryFeatures) for supported domestic returns accepted values for each site and category.



Applicable values: See ReturnsAcceptedOptionsCodeType
Item.ReturnPolicy
  .ReturnsWithin
string Conditionally Display string that buyer applications can use to present ReturnsWithinOption in a more user-friendly format to buyers. For example, in GetItem and related calls, this value is usually localized and can contain spaces.

If necessary, you can predict the choice of values based on the ReturnsWithin.Description options returned by GeteBayDetails.

Not applicable as input to the AddItem family of calls. (Use ReturnsWithinOption instead.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReturnPolicy
  .ReturnsWithinOption
token Conditionally Specifies the amount of time the buyer has to return an item. The return period begins when the item is marked "delivered" at the buyer's specified ship-to location. Most marketplaces and categories support 30-day and 60-day return periods. eBay sites often set 30-days as the default value for this field and sellers are obligated to honor the values that are set for a listing. This value is required if ReturnsAcceptedOption=ReturnsAccepted.

Applicable values: Retrieve the values supported by a marketplace and category by calling GetCategoryFeatures with FeatureID set to DomesticReturnsDurationValues, then see the values returned under the Category.DomesticReturnsDurationValues container in the response.

For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Note: If a seller ships internationally, and wants to define and use a separate international returns policy, the international equivalent of this field is the InternationalReturnsWithinOption field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Domestic Return Durations (in GetCategoryFeatures) for supported domestic return durations for each site and category.



Applicable values: See ReturnsWithinOptionsCodeType
Item.ReturnPolicy
  .ShippingCostPaidBy
string Conditionally This is a display string that buyer applications can use to present ShippingCostPaidByOption in a more user-friendly format to buyers. For example, in GetItem and related calls, this value is usually localized and can contain spaces.

If necessary, you can predict the choice of values based on the ShippingCostPaidBy.Description options returned by GeteBayDetails.

Not applicable as input to the AddItem family of calls. (Use ShippingCostPaidByOption instead.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReturnPolicy
  .ShippingCostPaidByOption
token Conditionally This option specifies whether the buyer or the seller pays for return shipping charges. Accepted values are Buyer or Seller. eBay sites often set Seller as the default value for this field, and sellers are obligated to honor the values that are set for a listing. This value is required if ReturnsAcceptedOption=ReturnsAccepted.

Depending on the seller's return policy and the specifics of a return, either the buyer or the seller can be responsible for the return shipping costs. Note that the seller is always responsible for return shipping costs for SNAD-related issues or for late shipments.

For ReviseItem only: You cannot change the value of this field if the listing has bids or sales, or if the listing ends within 12 hours. For more details, see the ReturnPolicy description.

Note: If a seller ships internationally, and wants to define and use a separate international returns policy, the international equivalent of this field is the InternationalShippingCostPaidByOption field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Return Shipping Cost Payee Values (in GetCategoryFeatures) for supported domestic return shipping cost payee values for each site and category.



Applicable values: See ShippingCostPaidByOptionsCodeType
Item.ReviseStatus ReviseStatusType Always This container is returned if a listing has been revised in any way since it first became active. One or more boolean fields will be returned under this container based on the type of revision(s) that occured, including a general revision, a price change, or a feature added or removed.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReviseStatus
  .BuyItNowAdded
boolean Conditionally This field is returned as true if a Buy It Now price has been added to the auction listing. This field is only returned if the original auction listing did not have a Buy It Now price, but a revision to that original listing included adding a Buy It Now price.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReviseStatus
  .BuyItNowLowered
boolean Conditionally This field is returned as true if the Buy It Now price on the original auction listing was lowered as part of a revision to the original auction listing. This field is only returned if the Buy It Now price on the original auction listing was lowered as part of a revision to the original auction listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReviseStatus.ItemRevised boolean Always This field is returned as true if the original listing has been revised. This field is always returned with the ReviseStatus container.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReviseStatus
  .ReserveLowered
boolean Conditionally This field is returned as true if the Reserve price on the original auction listing was lowered as part of a revision to the original auction listing. This field is only returned if the Reserve price on the original auction listing was lowered as part of a revision to the original auction listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ReviseStatus
  .ReserveRemoved
boolean Conditionally This field is returned as true if the Reserve price on the original auction listing was removed as part of a revision to the original auction listing. This field is only returned if the Reserve price on the original auction listing was removed as part of a revision to the original auction listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SecondaryCategory CategoryType Conditionally The unique identifier for a secondary category. This field is only applicable if the seller decides to list the item under two categories.

You cannot list US eBay Motors vehicles in two categories. However, you can list Parts & Accessories in two categories. The final value fee is based on the primary category in which the item is listed. Furthermore, you can list the same item in an eBay Motors Parts & Accessories category and in an eligible eBay category, as long as the primary category is associated with the site on which you are listing. That is, the two categories can be a mix of Motors Parts & Accessories and eBay site categories. (Real Estate, Mature Audience (adult), and Business & Industrial categories are not eligible for listing in two categories in this manner.) For example, if you list on Motors, the primary category could be 6750 (eBay Motors > Parts & Accessories > Apparel & Merchandise > Motorcycle > Jackets & Leathers), and the secondary category could be 57988 (eBay > Clothing, Shoes > Accessories > Men's Clothing > Outerwear). If you list on the main eBay site, the primary category could be 57988 and the secondary category could be 6750.

If eBay has designated a listing category as a value category (see ValueCategory in GetCategoryFeatures), and that listing category will be the seller's primary category, the seller will not be able to list their item in a secondary category. If a seller's request payload includes a primary or a secondary category that is designated as a value category, then eBay drops the SecondaryCategory ID and only lists the item in the category specified with the PrimaryCategory ID. Also, if the listing request includes Item Specifics (in ItemSpecifics) that are associated with the SecondaryCategory, eBay drops those values as well when the SecondaryCategory is dropped. The same logic is used if you revise an existing listing to add a secondary category, or to change one of the categories: If either the primary or secondary category is a value category, eBay drops the secondary category from your request.)

To remove this value when relisting an item, use DeletedField.

For ReviseItem only: When revising a listing within 12 hours of the listing's scheduled end time, you can only add or change the secondary category when an auction listing has no active bids or a multiple-quantity, fixed-price listing has no items sold. If you change the secondary category, any corresponding Item Specifics that were previously specified may be dropped from the listing if they aren't valid for the category.

For ReviseItem only: Previously, removing the listing from a secondary category was only possible within 12 hours of the listing's scheduled end time when an auction listing had no active bids or a multiple-quantity, fixed-price listing had no items sold, but this restriction no longer exists. Now, the secondary category can be dropped for any active listing at any time, regardless of whether an auction listing has bids or a fixed-price listing has sales. To drop a secondary category, the seller passes in a value of 0 in the SecondaryCategory.CategoryID field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SecondaryCategory
  .CategoryID
string Conditionally This string value is the unique identifier of an eBay category. In GetItem and related calls, see the CategoryName field for the text name of the category. The parent category of this eBay category is only shown in GetCategories.

In an Add call, the PrimaryCategory.CategoryID is conditionally required unless the seller successfully uses the ProductListingDetails container to find an eBay catalog product match. When the seller successfully uses an eBay catalog product to create a listing, the listing title, listing description, item specifics, listing category, and stock photo defined in the catalog product is used to create the listing.

In an Add/Revise/Relist call, the SecondaryCategory.CategoryID is conditionally required if a Secondary Category is used. Using a Secondary Category can incur a listing fee.

For ReviseItem only: Previously, removing the listing from a secondary category was only possible within 12 hours of the listing's scheduled end time when an auction listing had no active bids or a multiple-quantity, fixed-price listing had no items sold, but this restriction no longer exists. Now, the secondary category can be dropped for any active listing at any time, regardless of whether an auction listing has bids or a fixed-price listing has sales. To drop a secondary category, the seller passes in a value of 0 in the SecondaryCategory.CategoryID field.

Max length: 10.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SecondaryCategory
  .CategoryName
string Conditionally This string value is the display name of the eBay primary category, as it would appear on the eBay site. In GetItem, this will be a fully-qualified category name (e.g., Collectibles:Decorative Collectibles:Hummel, Goebel).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller UserType Always Container for information about this listing's seller.

Returned by GetItemsAwaitingFeedback if Buyer is making the request.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.AboutMePage boolean Always
A value of true indicates that the user has set up an About Me page.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.eBayGoodStanding boolean Always
This boolean field is returned as true if the eBay user is in good standing with eBay.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.Email string Conditionally Email address for the user. Please see the links below to the topics related to anonymous user information and static email addresses. You cannot retrieve an email address for any user with whom you do not have an order relationship, regardless of site.

An email address of another user is only returned if you and the other user are in an order relationship, within a certain time of order line item creation (although this limitation isn't applicable to the GetAllBidders call in the case of motor vehicles categories.) Based on Trust and Safety policies, the time is unspecified and can vary by site.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

For the GetOrders call, the buyer's email address will be returned (to the seller only) for orders less than two weeks old, but for orders that occurred more than two weeks in the past, the buyer's email address will no longer be returned. This Email field will still be returned, but 'dummy data', such as Invalid Request will replace the actual email address.

Note: For the GetItemTransactions call, this field is only returned to the seller of the order; this field is not returned for the buyer or third party.
Max length: 64 for US. May differ for other countries. Note: The eBay database allocates up to 128 characters for this field .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Anonymous user information
    Member communications

Item.Seller.FeedbackPrivate boolean Always Indicates whether the user has chosen to make their feedback score and feedback details private (hidden from other users). The percentage of positive feedback can still be returned, even if other feedback details are private.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Seller.FeedbackRatingStar FeedbackRatingStarCodeType Always
A visual indicator of an eBay user's Feedback score. A different colored star is used for each range of Feedback scores. See FeedbackRatingStarCodeType for specific values.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

Applicable values: See FeedbackRatingStar.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.FeedbackScore int Conditionally The aggregate feedback score for a user. A user's feedback score is the net positive feedback minus the net negative feedback left for the user. Feedback scores are a quantitative expression of the desirability of dealing with a user as a buyer or a seller in either side of an order.

Each order line item can result in one feedback entry for a given user (the buyer can leave feedback for the seller, and the seller can leave feedback for the buyer.). That one feedback can be positive, negative, or neutral. The aggregated feedback counts for a particular user represent that user's overall feedback score (referred to as a "feedback rating" on the eBay site).

If the user has chosen to make their feedback private and that user is not the user identified in the request's authentication token, FeedbackScore is not returned and FeedbackPrivate is returned with a value of true.

In GetMyeBayBuying and GetMyeBaySelling, feedback information (FeedbackScore and FeedbackRatingStar) is returned in BidList.ItemArray.Item.Seller. For GetMyeBayBuying, the feedback score of each seller with an item having received a bid from the buyer is returned. For GetMyeBaySelling, the feedback score of the seller is returned.

GetMyeBayBuying and GetMyeBaySelling also return feedback information (FeedbackScore and FeedbackRatingStar) in BidList.ItemArray.Item.SellingStatus.HighBidder. GetMyeBayBuying returns feedback information on the high bidder of each item the buyer is bidding on. GetMyeBaySelling returns feedback information on the high bidder of each item the seller is selling.

Since a bidder's user info is anonymous, the real feedback score will be returned only to that bidder, and to the seller of an item that the user is bidding on. For all other users, the value -99 is returned.

For GetOrders and GetItemTransactions only: If using Trading WSDL Version 1019 or above, this field will only be returned to the buyer or seller, and no longer returned at all to third parties. If using a Trading WSDL older than Version 1019, the accurate Feedback Score for the user is returned to the buyer or seller, but a dummy value of 0 will be returned to all third parties.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Seller.IDVerified boolean Always
Indicates whether the user has been verified. For more information about the ID Verify program, see: Protecting your account
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.NewUser boolean Always This boolean is returned as true if the eBay user has been registered on eBay for 30 days or less.
Note: The Buyer.NewUser field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .PositiveFeedbackPercent
float Conditionally Percent of total feedback that is positive. For example, if the member has 50 feedbacks, where 49 are positive and 1 is neutral or negative, the positive feedback percent could be 98.0. The value uses a max precision of 4 and a scale of 1. If the user has feedback, this value can be returned regardless of whether the member has chosen to make their feedback private. Not returned if the user has no feedback.

For GetOrders and GetItemTransactions only: If using Trading WSDL Version 1019 or above, this field will only be returned to the buyer or seller, and no longer returned at all to third parties. If using a Trading WSDL older than Version 1019, the accurate Positive Feedback Percentage value for the user is returned to the buyer or seller, but a dummy value of 0.0 will be returned to all third parties.
Item.Seller
  .RegistrationAddress
AddressType Conditionally
This container consists of the Registration address for the eBay user.

GetUser: eBay returns complete RegistrationAddress details (including Phone), as applicable to the registration site for the eBay user making the call.

GetItem and GetSellerTransactions: RegistrationAddress for another user (except for Phone) is only returned if you have an order relationship with that user AND that user is registered on DE/AT/CH, regardless of your registration site and the site to which you send the request. For example, the seller can see the buyer's registration address if the buyer is registered on DE/AT/CH, or the buyer can see the seller's registration address if the seller is registered on DE/AT/CH. (The buyer and seller won't see their own registration addresses in GetItem.)
Note: This container and its child fields will stop being returned in GetSellerTransactions on January 31, 2024.

DetailLevel: ReturnAll.
Item.Seller
  .RegistrationAddress.CityName
string Conditionally The city associated with an address on file with eBay. Most addresses include a city name, but not all. For example, Singapore is an island city-state, so SG would appear in the Country field, and 'Singapore' or 'Republic of Singapore' would appear in the CountryName field, but the CityName field is not applicable.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress.Country
CountryCodeType Conditionally The two-digit code representing the country of the user.

If not provided as input, eBay uses the country associated with the eBay Site ID when the call is made.



Applicable values: See Country.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress
  .CountryName
string Conditionally The full name of the country associated with an address on file with eBay.

Max length: eBay validates the content, but not the length for this field. Note: The eBay database allocates up to 128 characters for this field. .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress.FirstName
string Conditionally Displays the first name of the seller (in a business card format) if the seller's SellerBusinessCodeType value is Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress.LastName
string Conditionally Displays the last name of the seller (in a business card format) if the seller's SellerBusinessCodeType is set to Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress.Name
string Conditionally
The eBay user's name associated with an address on file with eBay.
Note: The Seller.RegistrationAddress container and its child fields will stop being returned in GetSellerTransactions on January 31, 2024.
Max length: 128.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress.Phone
string Conditionally User's primary phone number. This may return a value of Invalid Request if you are not authorized to see the user's phone number.

In the US, the area code (3 digits), the prefix (3 digits), the line number (4 digits), and phone extension (if specified by the user) are returned in this field. The extension can be one or more digits. Non-breaking spaces are used as delimiters between these phone number components.

Max length: eBay validates the content (should only be integer values and delimiters), but not the length for this field. Note: The eBay database allocates up to 128 characters for this field. .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress
  .PostalCode
string Conditionally User's postal code.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress.Street
string Conditionally A concatenation of Street1 and Street2, primarily used for a registration address.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress.Street1
string Conditionally The first line of the user's street address.

Note: Note the different maximum lengths noted below for different countries. If a street name exceeds the maximum length for the applicable country, the full street name may be expressed through both the Street1 and Street2 fields.
Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller
  .RegistrationAddress.Street2
string Conditionally The second line of the user's street address (such as an apartment number or suite number).

Returned if the user specified a second street value for their address.
Note: In case of Item.SellerContactDetails, Street2 can be used to provide City, Address, State, and Zip code (if applicable). Note: Note the different maximum lengths noted below for different countries. If a street name exceeds the maximum length for the applicable country, the full street name may be expressed through both the Street1 and Street2 fields. Note: In the case of TransactionArray.Transaction.MultiLegShippingDetails.SellerShipmentToLogisticsProvider.ShipToAddress, if the item is being shipped through eBay International Shipping and this address refers to an intermediated warehouse address, the eBay Virtual Tracking number (eVTN) that is used for the domestic leg of the shipment is appended to Street2. This value is generated by eBay when the order is completed. Example:"Reference #1234567890123456"
Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.RegistrationDate dateTime Always Indicates the date the specified user originally registered with eBay.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Seller.SellerInfo SellerType Always
Contains information about a seller, including listing settings, listing preferences, seller rankings, and seller type.
Note: This container will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .AllowPaymentEdit
boolean Always
Indicates whether the seller allows buyers to edit the total cost of an item during checkout.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .BillingCurrency
CurrencyCodeType Conditionally Currency type in which the user is billed seller fees.

Applicable values: See BillingCurrency.
Code so that your app gracefully handles any future changes to this list.
Item.Seller.SellerInfo
  .CheckoutEnabled
boolean Always
This flag indicates whether or not the seller's Checkout Enabled preference is turned on.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .CIPBankAccountStored
boolean Always
This boolean field indicates whether or not the seller has stored bank account information on file with eBay.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .GoodStanding
boolean Always
This boolean field indicates whether or not the seller is in good standing with eBay.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .QualifiesForB2BVAT
boolean Always
Indicates whether the user is subject to VAT. Users who have registered with eBay as VAT-exempt are not subject to VAT.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .SafePaymentExempt
boolean Always
If this field is true, the user is exempt from the requirement to offer at least one safe payment method when listing items.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.
Default: false.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .SellerBusinessType
SellerBusinessCodeType Conditionally This enumeration value indicates the type of eBay account used by the seller.

Applicable values:

Commercial
(out) Commercial seller account.
CustomCode
(out) Reserved for internal or future use.
Private
(out) Private seller account.
Undefined
(out) Type of seller account not defined.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .SellerLevel
SellerLevelCodeType Always
This enumeration value indicates the user's eBay PowerSeller tier.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

Applicable values: See SellerLevel.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .StoreOwner
boolean Always
Boolean value indicates whether or not the seller is an eBay Store owner.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .StoreURL
anyURI Conditionally
The URL for the seller's eBay Store. This field is only returned if the seller is a store owner (look for a value of true in the SellerInfo.StoreOwner field).
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.SellerInfo
  .TopRatedSeller
boolean Conditionally This boolean field indicates if the seller is certified as a Top Rated Seller. Only Top Rated Sellers can qualify for Top Rated Plus listings, which receive the Top Rated Plus seal and other benefits.
This field is only returned for the following sites: US, Germany, Austria, Switzerland, UK, Ireland, and Australia. The Top Rated Seller and Top Rated Plus listing requirements will differ by site. Below are some links to Help pages that discuss these requirements: Top Rated Sellers, registered in the US, can qualify for Top Rated Seller programs in other countries as long as they meet the selling requirements in those countries. However, even if US sellers qualify for programs in other countries, they will not receive the Final Value Fee discount on sales in those countries.
Note: The SellerInfo container and its child fields will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.Site SiteCodeType Always eBay site the user is registered with.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

Applicable values: See Site.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Seller.Status UserStatusCodeType Always Indicates the user's registration/user status.

Applicable values: See Status.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Seller.UserID UserIDType (string) Always Unique eBay user ID for the user.

Since a bidder's user info is anonymous, this tag contains the actual value of an ID only for that bidder, and for the seller of an item that the user is bidding on. For other users, the actual value is replaced by an anonymous value, according to these rules:

When bidding on items, UserID is replaced with the value "a****b" where a and b are random characters from the UserID. For example, if the UserID = IBidALot, it might be displayed as, "I****A".

Important: In this format, the anonymous bidder ID can change for each auction. For GetMyeBayBuying only, when bidding on items: UserID is replaced with the value "a****b" where a and b are random characters from the UserID.

When bidding on items listed on the Philippines site: UserID is replaced with the value "Bidder X" where X is a number indicating the order of that user's first bid. For example, if the user was the third bidder, UserID = Bidder 3. Note that in this Philippines site format, the anonymous bidder ID stays the same for a given auction, but is different for different auctions. For example, a bidder who is the third and then the seventh bidder in an auction will be listed for both bids as "Bidder 3". However, if that same bidder is the first bidder on a different auction, the bidder will be listed for that auction as "Bidder 1", not "Bidder 3".

For GetMyeBayBuying only, when bidding on items listed on the UK and AU sites: UserID is replaced with the string "High Bidder".

For PlaceOffer, see also SellingStatus.HighBidder.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Seller.UserIDChanged boolean Always If true, identifies a user whose ID has changed within the last 30 days. Does not indicate a new user (see NewUser).

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

Note: For the GetItemTransactions call, this field is only returned to the seller of the order; this field is not returned for the buyer or third party.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Seller.UserIDLastChanged dateTime Always
Date and time when the user last changed their eBay user ID (in GMT).
Note: The Buyer.UserIDLastChanged field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Seller.VATStatus VATStatusCodeType Always Indicates whether or not the user is subject to VAT. Users who have registered with eBay as VAT-exempt are not subject to VAT. See documentation on Value-Added Tax (VAT).

Applicable values:

CustomCode
(out) Reserved for internal or future use
NoVATTax
(out) VAT is not applicable
VATExempt
(out) Residence in a country with VAT and user is registered as VAT-exempt
VATTax
(out) Residence in a country with VAT and user is not registered as VAT-exempt

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Vat-exempt sellers.

Item.SellerContactDetails AddressType Conditionally This container is used by sellers of Classified Ad listings to provide contact information.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Classified ad listings.

Item.SellerContactDetails
  .CompanyName
string Conditionally User's company name. This field should only be passed in or returned if applicable/defined.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .County
string Conditionally The county associated with an address on file with eBay. This field should only be passed in or returned if applicable/defined.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .FirstName
string Conditionally Displays the first name of the seller (in a business card format) if the seller's SellerBusinessCodeType value is Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .LastName
string Conditionally Displays the last name of the seller (in a business card format) if the seller's SellerBusinessCodeType is set to Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .PhoneAreaOrCityCode
string Conditionally Area or City Code of a user's primary phone number. This field applies to Classified Ad listings only.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .PhoneCountryCode
CountryCodeType Conditionally Standard ISO code for the country of the user's primary telephone phone number. For Classified Ad listings, this code is used to look up the country's international calling prefix. Both the ISO code and country phone prefix are stored with listings of this type. This field applies to Classified Ad listings only.

Applicable values: See PhoneCountryCode.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .PhoneCountryPrefix
string Conditionally Country Prefix of the secondary phone number. This value is derived from inputs supplied for PhoneCountryCode. This field applies to Classified Ad listings only.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .PhoneLocalNumber
string Conditionally The local number portion of the user's primary phone number. This field applies to Classified Ad listings only.

Note: The full primary phone number is constructed by combining PhoneLocalNumber with PhoneAreaOrCityCode and PhoneCountryPrefix.

Max length: 30.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .Street1
string Conditionally The first line of the user's street address.

Note: Note the different maximum lengths noted below for different countries. If a street name exceeds the maximum length for the applicable country, the full street name may be expressed through both the Street1 and Street2 fields.
Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerContactDetails
  .Street2
string Conditionally The second line of the user's street address (such as an apartment number or suite number).

Returned if the user specified a second street value for their address.
Note: In case of Item.SellerContactDetails, Street2 can be used to provide City, Address, State, and Zip code (if applicable). Note: Note the different maximum lengths noted below for different countries. If a street name exceeds the maximum length for the applicable country, the full street name may be expressed through both the Street1 and Street2 fields. Note: In the case of TransactionArray.Transaction.MultiLegShippingDetails.SellerShipmentToLogisticsProvider.ShipToAddress, if the item is being shipped through eBay International Shipping and this address refers to an intermediated warehouse address, the eBay Virtual Tracking number (eVTN) that is used for the domestic leg of the shipment is appended to Street2. This value is generated by eBay when the order is completed. Example:"Reference #1234567890123456"
Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles SellerProfilesType Conditionally This container is used if the seller would like to use/reference business policies to create, revise, relist, or verify their listing. The seller's account must be opted in to business policies to use this container. If this container is used, exactly one Payment Business Policy, one Shipping Business Policy, and one Return Business Policy must be specified and applied to the listing. If the seller's account is not opted in to business policies, that seller may not use this container. Sellers must opt-in to business policies through My eBay or by using the optInToProgram call of the eBay Account API.

If business policies are applied to a listing, all payment, shipping, and return policy settings in these policies will override any other payment, shipping, or return policy legacy fields that are included in the call request.
Note: To make sure that the shipping cost override and policies are set correctly on an item (that is using business policies and has one or more shipping service cost overrides set up), the Item.SellerProfiles.SellerShippingProfile container and the Item.ShippingServiceCostOverrideList.ShippingServiceCostOverride container(s) must be included, even if no changes are being made. This container is only returned in 'Get' calls if business policies are set for the listing, and the person making the API call is the seller of the listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerPaymentProfile
SellerPaymentProfileType Conditionally The SellerPaymentProfile container is used in an Add/Revise/Relist/Verify API call to reference and use the settings/values of a payment business policy. Payment business policies contain a setting to control whether immediate payment is required, settings to specify due dates for the deposit and full payment of a motor vehicle listing (Motors policy only), and settings to specify which offline payment methods are avaiable to buyers for sales transactions that happen off of eBay's platform. Multiple payment business policies can be created and saved at the account level by sellers.

This container is only returned in 'Get' calls if Business Policies are set for the listing, and the person making the API call is the seller of the listing.

Note: Sellers will never have to specify electronic payment methods, but offline payment methods are required for listings where offline payment is required or supported.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerPaymentProfile
  .PaymentProfileID
long Conditionally The unique identifier of a payment business policy. A PaymentProfileID and/or a PaymentProfileName value is used in the Add/Revise/Relist/Verify call to reference and use the payment settings/values of a payment business policy. If both fields are provided and their values don't match, the PaymentProfileID takes precedence.

Payment profile IDs can be retrieved with the getPaymentPolicies call of the Account API or with the getSellerProfiles call of the Business Policies Management API. Business policy IDs can also be retrieved through the Business policies section of My eBay.

In the 'Get' calls, the PaymentProfileID value will always be returned if business policies are set for the listing, and the person making the API call is the seller of the listing. The PaymentProfileName value will be returned if a name is assigned to the payment business policy.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerPaymentProfile
  .PaymentProfileName
string Conditionally The name of a payment business policy. A PaymentProfileID and/or a PaymentProfileName value is used in the Add/Revise/Relist/Verify call to reference and use the payment settings/values of a payment business policy. If both fields are provided and their values don't match, the PaymentProfileID takes precedence.

In the 'Get' calls, the PaymentProfileID value will always be returned if business policies are set for the listing, and the person making the API call is the seller of the listing. The PaymentProfileName value will be returned if a name is assigned to the payment business policy.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerReturnProfile
SellerReturnProfileType Conditionally The SellerReturnProfile container is used in an Add/Revise/Relist/Verify Trading API call to reference and use the settings/values of a return business policy. Return business policies contain detailed information on the seller's return policy for domestic and international buyers (if the seller ships internationally), including whether or not the seller accepts returns from domestic and international buyers, how many days the buyer has to return the item for a refund, and who pays the return shipping costs. Multiple return policy business policies can be created and saved at the account level by sellers.
Note: As a part of Digital Services Act (DSA) requirements, as of April 3, 2023, buyers in the EU must be allowed to return an item within 14 days or more, unless the item is exempt. Where applicable, sellers should update their return policies to reflect this requirement of accepting returns from EU buyers. This update can be made through the ReturnPolicy container or through a return business policy that is referenced through the SellerProfiles.SellerReturnProfile container.

This container is only returned in 'Get' calls if Business Policies are set for the listing and the person making the API call is the seller of the listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerReturnProfile
  .ReturnProfileID
long Conditionally The unique identifier of a return policy business policy. A ReturnProfileID and/or a ReturnProfileName value is used in the Add/Revise/Relist/Verify call to reference and use the return policy settings/values of a return policy business policy. If both fields are provided and their values don't match, the ReturnProfileID takes precedence.

Return policy profile IDs can be retrieved with the getReturnPolicies call of the Account API or with the getSellerProfiles call of the Business Policies Management API. Business policy IDs can also be retrieved through the Business policies section of My eBay.

In the 'Get' calls, the ReturnProfileID value will always be returned if business policies are set for the listing, and the person making the API call is the seller of the listing. The ReturnProfileName value will be returned if a name is assigned to the return policy business policy.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerReturnProfile
  .ReturnProfileName
string Conditionally The name of a return policy business policy. A ReturnProfileID and/or a ReturnProfileName value is used in the Add/Revise/Relist/Verify call to reference and use the return policy settings/values of a return policy business policy. If both fields are provided and their values don't match, the ReturnProfileID takes precedence.

In the 'Get' calls, the ReturnProfileID value will always be returned if business policies are set for the listing, and the person making the API call is the seller of the listing. The ReturnProfileName value will be returned if a name is assigned to the return policy business policy.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerShippingProfile
SellerShippingProfileType Conditionally The SellerShippingProfile container is used in an Add/Revise/Relist/Verify Trading API call to reference and use the settings/values of a specific shipping business policy. Shipping business policies contain detailed information on domestic and international shipping, including shipping service options and costs, handling time, shipping discount inormation, and excluded ship-to locations. Multiple shipping business policies can be created and saved at the account level by sellers.

This container is only returned in 'Get' calls if Business Policies are set for the listing, and the person making the API call is the seller of the listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerShippingProfile
  .ShippingProfileID
long Conditionally The unique identifier of a shipping business policy. A ShippingProfileID and/or a ShipppingProfileName value is used in the Add/Revise/Relist/Verify call to reference and use the shippping-related settings/values of a shipping business policy. If both fields are provided and their values don't match, the ShipppingProfileID takes precedence.

Shipping profile IDs can be retrieved with the getFulfillmentPolicies call of the Account API or with the getSellerProfiles call of the Business Policies Management API. Business policy IDs can also be retrieved through the Business policies section of My eBay.

In the 'Get' calls, the ShipppingProfileID value will always be returned if business policies are set for the listing, and the person making the API call is the seller of the listing. The ShipppingProfileName value will be returned if a name is assigned to the shipping business policy.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerProfiles
  .SellerShippingProfile
  .ShippingProfileName
string Conditionally The name of a shipping business policy. A ShippingProfileID and/or a ShippingProfileName value is used in the Add/Revise/Relist/Verify call to reference and use the shipping-related settings/values of a shipping business policy. If both fields are provided and their values don't match, the ShippingProfileID takes precedence.

In the 'Get' calls, the ShippingProfileID value will always be returned if business policies are set for the listing, and the person making the API call is the seller of the listing. The ShippingProfileName value will be returned if a name is assigned to the shipping business policy.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellerVacationNote string Conditionally This field is returned if the seller of the item is currently on vacation and has configured a custom message to display to potentioal buyers through Time Away settings.

Note: There are two Time Away modes - Pause Sales and Allow Sales. If seller is in the Pause Sales mode, all fixed-price listings for that seller will be hidden from search results during the span of the seller's vacation.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus SellingStatusType Always Various details about the current status of the listing, such as the current number of bids, the current high bidder, quantity sold, current price, and listing status.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.AdminEnded boolean Conditionally If included in the response as true, indicates that the listing was administratively canceled due to a violation of eBay's listing policies and that the item can be relisted using RelistItem.

Note: GetItem returns an error (invalid item ID) in the response if Item.SellingStatus.AdminEnded = true and the requesting user is not the seller of the item.
Item.SellingStatus.BidCount int Always Number of bids placed so far against the auction item.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .BidIncrement
AmountType (double) Always The minimum amount a progressive bid must be above the current high bid to be accepted. This field is only applicable to auction listings. The value of this field will always be '0.00' for Classified Ad and fixed-price listings.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .BidIncrement
  [ attribute currencyID ]
CurrencyCodeType Conditionally The minimum amount a progressive bid must be above the current high bid to be accepted. This field is only applicable to auction listings. The value of this field will always be '0.00' for Classified Ad and fixed-price listings.

For a list of possible enumeration values, see CurrencyCodeType.
Item.SellingStatus
  .ConvertedCurrentPrice
AmountType (double) Conditionally Converted value of the CurrentPrice in the currency of the site that returned this response. For active items, refresh the listing's data every 24 hours to pick up the current conversion rates. Only returned when the item's CurrentPrice on the listing site is in different currency than the currency of the host site for the user/application making the API call. ConvertedCurrentPrice is not returned for Classified listings (Classified listings are not available on all sites).

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .ConvertedCurrentPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Converted value of the CurrentPrice in the currency of the site that returned this response. For active items, refresh the listing's data every 24 hours to pick up the current conversion rates. Only returned when the item's CurrentPrice on the listing site is in different currency than the currency of the host site for the user/application making the API call. ConvertedCurrentPrice is not returned for Classified listings (Classified listings are not available on all sites).

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.

For a list of possible enumeration values, see CurrencyCodeType.
Item.SellingStatus
  .CurrentPrice
AmountType (double) Always The current price of the item in the original listing currency.

For auction listings, this price is the starting minimum price (if the listing has no bids) or the current highest bid (if bids have been placed) for the item. This does not reflect the BuyItNow price.

For fixed-price and ad format listings, this is the current listing price.

In multi-variation, fixed-price listings, this value matches the lowest-priced variation that is still available for sale.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .CurrentPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally The current price of the item in the original listing currency.

For auction listings, this price is the starting minimum price (if the listing has no bids) or the current highest bid (if bids have been placed) for the item. This does not reflect the BuyItNow price.

For fixed-price and ad format listings, this is the current listing price.

In multi-variation, fixed-price listings, this value matches the lowest-priced variation that is still available for sale.

For a list of possible enumeration values, see CurrencyCodeType.
Item.SellingStatus.HighBidder UserType Conditionally For ended auction listings that have a winning bidder, this field is a container for the high bidder's user ID. For ended, single-item, fixed-price listings, this field is a container for the user ID of the purchaser. This field isn't returned for auctions with no bids, or for active fixed-price listings.

In the case of PlaceOffer, for auction listings, this field is a container for the high bidder's user ID. In the PlaceOffer response, the following applies: For multiple-quantity, fixed-price listings, the high bidder is only returned if there is just one order line item (or only for the first order line item that is created).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .AboutMePage
boolean Conditionally
A value of true indicates that the user has set up an About Me page.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .BuyerInfo
BuyerType Conditionally Contains information about the user as a buyer, such as the shipping address. See BuyerType for its child elements.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
AddressType Conditionally This container shows the buyer's shipping address.

Note: For an Authenticity Guarantee program order returned in GetItemTransactions or GetSellerTransactions, this is the address of the authenticator's warehouse. The authenticator is responsible for delivery to the buyer's shipping address.

Note: For In-Store Pickup and Click and Collect orders, this is the address of the merchant's store where the buyer will pick up the order. This is only applicable for GetItemTransactions and GetSellerTransactions calls.

Note: For eBay Vault scenarios: GetItemTransactions calls, and GetSellerTransactions calls (Seller View only), mock address details are returned for:

- Vault to vault orders: Buyer and Seller View

- Ship to vault orders: Mock addresses are returned for the Buyer View (only); the address returned for the Seller View will be the authenticator&apos;s address.

- Vault in-hand submission orders: the address returned for the Buyer View will be the authenticator's address (GetItemTransactions only).

The following address details are returned for mock addresses:

 <ShippingAddress> 
 <Name>eBay Vault</Name>
 <AddressID>Invalid Request</AddressID>
 <AddressOwner>eBay</AddressOwner>
 <AddressUsage>Invalid</AddressUsage>
 <CityName>Invalid Request</CityName>
 <Country>US</Country>
 <CountryName>Invalid Request</CountryName>
 <ExternalAddressID>Invalid Request</ExternalAddressID>
 <Phone>Invalid Request</Phone>
 <PostalCode>Invalid Request</PostalCode>
 <StateOrProvince>Invalid Request</StateOrProvince>
 <Street1>Invalid Request</Street1>
 <Street2></Street2>
</ShippingAddress>



DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
  .Country
CountryCodeType Conditionally The two-digit code representing the country of the user.

If not provided as input, eBay uses the country associated with the eBay Site ID when the call is made.



Applicable values: See Country.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
  .FirstName
string Conditionally Displays the first name of the seller (in a business card format) if the seller's SellerBusinessCodeType value is Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
  .LastName
string Conditionally Displays the last name of the seller (in a business card format) if the seller's SellerBusinessCodeType is set to Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
  .PostalCode
string Conditionally User's postal code.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .eBayGoodStanding
boolean Conditionally
This boolean field is returned as true if the eBay user is in good standing with eBay.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .Email
string Conditionally Email address for the user. Please see the links below to the topics related to anonymous user information and static email addresses. You cannot retrieve an email address for any user with whom you do not have an order relationship, regardless of site.

An email address of another user is only returned if you and the other user are in an order relationship, within a certain time of order line item creation (although this limitation isn't applicable to the GetAllBidders call in the case of motor vehicles categories.) Based on Trust and Safety policies, the time is unspecified and can vary by site.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

For the GetOrders call, the buyer's email address will be returned (to the seller only) for orders less than two weeks old, but for orders that occurred more than two weeks in the past, the buyer's email address will no longer be returned. This Email field will still be returned, but 'dummy data', such as Invalid Request will replace the actual email address.

Note: For the GetItemTransactions call, this field is only returned to the seller of the order; this field is not returned for the buyer or third party.
Max length: 64 for US. May differ for other countries. Note: The eBay database allocates up to 128 characters for this field .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Anonymous user information
    Member communications

Item.SellingStatus.HighBidder
  .FeedbackPrivate
boolean Conditionally Indicates whether the user has chosen to make their feedback score and feedback details private (hidden from other users). The percentage of positive feedback can still be returned, even if other feedback details are private.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .FeedbackRatingStar
FeedbackRatingStarCodeType Conditionally
A visual indicator of an eBay user's Feedback score. A different colored star is used for each range of Feedback scores. See FeedbackRatingStarCodeType for specific values.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

Applicable values: See FeedbackRatingStar.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .FeedbackScore
int Conditionally The aggregate feedback score for a user. A user's feedback score is the net positive feedback minus the net negative feedback left for the user. Feedback scores are a quantitative expression of the desirability of dealing with a user as a buyer or a seller in either side of an order.

Each order line item can result in one feedback entry for a given user (the buyer can leave feedback for the seller, and the seller can leave feedback for the buyer.). That one feedback can be positive, negative, or neutral. The aggregated feedback counts for a particular user represent that user's overall feedback score (referred to as a "feedback rating" on the eBay site).

If the user has chosen to make their feedback private and that user is not the user identified in the request's authentication token, FeedbackScore is not returned and FeedbackPrivate is returned with a value of true.

In GetMyeBayBuying and GetMyeBaySelling, feedback information (FeedbackScore and FeedbackRatingStar) is returned in BidList.ItemArray.Item.Seller. For GetMyeBayBuying, the feedback score of each seller with an item having received a bid from the buyer is returned. For GetMyeBaySelling, the feedback score of the seller is returned.

GetMyeBayBuying and GetMyeBaySelling also return feedback information (FeedbackScore and FeedbackRatingStar) in BidList.ItemArray.Item.SellingStatus.HighBidder. GetMyeBayBuying returns feedback information on the high bidder of each item the buyer is bidding on. GetMyeBaySelling returns feedback information on the high bidder of each item the seller is selling.

Since a bidder's user info is anonymous, the real feedback score will be returned only to that bidder, and to the seller of an item that the user is bidding on. For all other users, the value -99 is returned.

For GetOrders and GetItemTransactions only: If using Trading WSDL Version 1019 or above, this field will only be returned to the buyer or seller, and no longer returned at all to third parties. If using a Trading WSDL older than Version 1019, the accurate Feedback Score for the user is returned to the buyer or seller, but a dummy value of 0 will be returned to all third parties.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .IDVerified
boolean Conditionally
Indicates whether the user has been verified. For more information about the ID Verify program, see: Protecting your account
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .NewUser
boolean Conditionally This boolean is returned as true if the eBay user has been registered on eBay for 30 days or less.
Note: The Buyer.NewUser field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .PositiveFeedbackPercent
float Conditionally Percent of total feedback that is positive. For example, if the member has 50 feedbacks, where 49 are positive and 1 is neutral or negative, the positive feedback percent could be 98.0. The value uses a max precision of 4 and a scale of 1. If the user has feedback, this value can be returned regardless of whether the member has chosen to make their feedback private. Not returned if the user has no feedback.

For GetOrders and GetItemTransactions only: If using Trading WSDL Version 1019 or above, this field will only be returned to the buyer or seller, and no longer returned at all to third parties. If using a Trading WSDL older than Version 1019, the accurate Positive Feedback Percentage value for the user is returned to the buyer or seller, but a dummy value of 0.0 will be returned to all third parties.
Item.SellingStatus.HighBidder
  .RegistrationAddress
AddressType Conditionally
This container consists of the Registration address for the eBay user.

GetUser: eBay returns complete RegistrationAddress details (including Phone), as applicable to the registration site for the eBay user making the call.

GetItem and GetSellerTransactions: RegistrationAddress for another user (except for Phone) is only returned if you have an order relationship with that user AND that user is registered on DE/AT/CH, regardless of your registration site and the site to which you send the request. For example, the seller can see the buyer's registration address if the buyer is registered on DE/AT/CH, or the buyer can see the seller's registration address if the seller is registered on DE/AT/CH. (The buyer and seller won't see their own registration addresses in GetItem.)
Note: This container and its child fields will stop being returned in GetSellerTransactions on January 31, 2024.

DetailLevel: ReturnAll.
Item.SellingStatus.HighBidder
  .RegistrationAddress.CityName
string Conditionally The city associated with an address on file with eBay. Most addresses include a city name, but not all. For example, Singapore is an island city-state, so SG would appear in the Country field, and 'Singapore' or 'Republic of Singapore' would appear in the CountryName field, but the CityName field is not applicable.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress.Country
CountryCodeType Conditionally The two-digit code representing the country of the user.

If not provided as input, eBay uses the country associated with the eBay Site ID when the call is made.



Applicable values: See Country.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress
  .CountryName
string Conditionally The full name of the country associated with an address on file with eBay.

Max length: eBay validates the content, but not the length for this field. Note: The eBay database allocates up to 128 characters for this field. .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress.FirstName
string Conditionally Displays the first name of the seller (in a business card format) if the seller's SellerBusinessCodeType value is Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress.LastName
string Conditionally Displays the last name of the seller (in a business card format) if the seller's SellerBusinessCodeType is set to Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress.Name
string Conditionally
The eBay user's name associated with an address on file with eBay.
Note: The Seller.RegistrationAddress container and its child fields will stop being returned in GetSellerTransactions on January 31, 2024.
Max length: 128.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress.Phone
string Conditionally User's primary phone number. This may return a value of Invalid Request if you are not authorized to see the user's phone number.

In the US, the area code (3 digits), the prefix (3 digits), the line number (4 digits), and phone extension (if specified by the user) are returned in this field. The extension can be one or more digits. Non-breaking spaces are used as delimiters between these phone number components.

Max length: eBay validates the content (should only be integer values and delimiters), but not the length for this field. Note: The eBay database allocates up to 128 characters for this field. .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress
  .PostalCode
string Conditionally User's postal code.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress.Street
string Conditionally A concatenation of Street1 and Street2, primarily used for a registration address.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress.Street1
string Conditionally The first line of the user's street address.

Note: Note the different maximum lengths noted below for different countries. If a street name exceeds the maximum length for the applicable country, the full street name may be expressed through both the Street1 and Street2 fields.
Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationAddress.Street2
string Conditionally The second line of the user's street address (such as an apartment number or suite number).

Returned if the user specified a second street value for their address.
Note: In case of Item.SellerContactDetails, Street2 can be used to provide City, Address, State, and Zip code (if applicable). Note: Note the different maximum lengths noted below for different countries. If a street name exceeds the maximum length for the applicable country, the full street name may be expressed through both the Street1 and Street2 fields. Note: In the case of TransactionArray.Transaction.MultiLegShippingDetails.SellerShipmentToLogisticsProvider.ShipToAddress, if the item is being shipped through eBay International Shipping and this address refers to an intermediated warehouse address, the eBay Virtual Tracking number (eVTN) that is used for the domestic leg of the shipment is appended to Street2. This value is generated by eBay when the order is completed. Example:"Reference #1234567890123456"
Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .RegistrationDate
dateTime Always Indicates the date the specified user originally registered with eBay.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .Site
SiteCodeType Conditionally eBay site the user is registered with.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

Applicable values: See Site.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .Status
UserStatusCodeType Conditionally Indicates the user's registration/user status.

Applicable values: See Status.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.HighBidder
  .UserAnonymized
boolean Always Indicates whether or not the User container has been made anonymous. If true, some elements in the User container have either been removed, or had their values changed to remove identifying characteristics. If false, all expected elements are returned, and no values are changed.

Since a bidder's user info is anonymous, this tag is returned as false only to the bidder, and to the seller of an item that the user is bidding on. For all other users, this tag is returned as true.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .UserID
UserIDType (string) Conditionally Unique eBay user ID for the user.

Since a bidder's user info is anonymous, this tag contains the actual value of an ID only for that bidder, and for the seller of an item that the user is bidding on. For other users, the actual value is replaced by an anonymous value, according to these rules:

When bidding on items, UserID is replaced with the value "a****b" where a and b are random characters from the UserID. For example, if the UserID = IBidALot, it might be displayed as, "I****A".

Important: In this format, the anonymous bidder ID can change for each auction. For GetMyeBayBuying only, when bidding on items: UserID is replaced with the value "a****b" where a and b are random characters from the UserID.

When bidding on items listed on the Philippines site: UserID is replaced with the value "Bidder X" where X is a number indicating the order of that user's first bid. For example, if the user was the third bidder, UserID = Bidder 3. Note that in this Philippines site format, the anonymous bidder ID stays the same for a given auction, but is different for different auctions. For example, a bidder who is the third and then the seventh bidder in an auction will be listed for both bids as "Bidder 3". However, if that same bidder is the first bidder on a different auction, the bidder will be listed for that auction as "Bidder 1", not "Bidder 3".

For GetMyeBayBuying only, when bidding on items listed on the UK and AU sites: UserID is replaced with the string "High Bidder".

For PlaceOffer, see also SellingStatus.HighBidder.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .UserIDChanged
boolean Conditionally If true, identifies a user whose ID has changed within the last 30 days. Does not indicate a new user (see NewUser).

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

Note: For the GetItemTransactions call, this field is only returned to the seller of the order; this field is not returned for the buyer or third party.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .UserIDLastChanged
dateTime Conditionally
Date and time when the user last changed their eBay user ID (in GMT).
Note: The Buyer.UserIDLastChanged field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.SellingStatus.HighBidder
  .VATStatus
VATStatusCodeType Conditionally Indicates whether or not the user is subject to VAT. Users who have registered with eBay as VAT-exempt are not subject to VAT. See documentation on Value-Added Tax (VAT).

Applicable values:

CustomCode
(out) Reserved for internal or future use
NoVATTax
(out) VAT is not applicable
VATExempt
(out) Residence in a country with VAT and user is registered as VAT-exempt
VATTax
(out) Residence in a country with VAT and user is not registered as VAT-exempt

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Vat-exempt sellers.

Item.SellingStatus.LeadCount int Conditionally Applicable to Ad type listings only. Indicates how many leads to potential buyers are associated with this item. Returns 0 (zero) for listings in other formats. You must be the seller of the item to retrieve the lead count.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .ListingOnHold
boolean Conditionally Indicates if a listing is on hold due to an eBay policy violation.

If a listing is put on hold, users are unable to view the listing details, the listing is hidden from search, and all attempted purchases, offers, and bids for the listing are blocked. eBay, however, gives sellers the opportunity to address violations and get listings fully reinstated. A listing will be ended if a seller does not address a violation, or if the violation can not be rectified.

If a listing is fixable, the seller should be able to view the listing details and this boolean will be returned as true.

Once a listing is fixed, this boolean will no longer be returned.
Item.SellingStatus
  .ListingStatus
ListingStatusCodeType Always Specifies an active or ended listing's status in eBay's processing workflow.
  • If a listing ends with a sale (or sales), eBay needs to update the sale details (e.g., total price and buyer/high bidder) and the transaction fees. This processing can take several minutes.
  • If you retrieve a sold item and no details about the buyer/high bidder are returned or no transaction fees are available, use this listing status information to determine whether eBay has finished processing the listing.


Applicable values:

Active
(out) The listing is still active or the listing has ended with a sale but eBay has not completed processing the sale details. If the listing has ended with a sale but this Active status is returned, please allow several minutes for eBay to finish processing the listing.
Completed
(out) The listing has closed and eBay has completed processing the sale. All sale information returned from eBay should be considered accurate and complete. In this state, all transaction fees should be calculated.
Custom
(out) Reserved for internal or future use.
CustomCode
(out) Reserved for internal or future use.
Ended
(out) The listing has ended. If the listing ended with a sale, eBay has completed processing of the sale. All sale information returned from eBay should be considered accurate and complete. However, the transaction fees are not yet available.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .MinimumToBid
AmountType (double) Always Smallest amount the next bid on the item can be. Returns same value as Item.StartPrice (if no bids have yet been placed) or CurrentPrice plus BidIncrement (if at least one bid has been placed). Only applicable to auction listings. Returns null for fixed-price and Ad type listings.

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .MinimumToBid
  [ attribute currencyID ]
CurrencyCodeType Conditionally Smallest amount the next bid on the item can be. Returns same value as Item.StartPrice (if no bids have yet been placed) or CurrentPrice plus BidIncrement (if at least one bid has been placed). Only applicable to auction listings. Returns null for fixed-price and Ad type listings.

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.

For a list of possible enumeration values, see CurrencyCodeType.
Item.SellingStatus
  .PromotionalSaleDetails
PromotionalSaleDetailsType Conditionally If a seller has reduced the price of a listed item with the Promotional Price Display feature, this field contains the original price of the discounted item, along with the start-time and end-time of the discount.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .PromotionalSaleDetails
  .EndTime
dateTime Conditionally End time of a discount for an item whose price a seller has reduced with the Promotional Price Display feature.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .PromotionalSaleDetails
  .OriginalPrice
AmountType (double) Conditionally Original price of an item whose price a seller has reduced with the Promotional Price Display feature.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .PromotionalSaleDetails
  .OriginalPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Original price of an item whose price a seller has reduced with the Promotional Price Display feature.

For a list of possible enumeration values, see CurrencyCodeType.
Item.SellingStatus
  .PromotionalSaleDetails
  .StartTime
dateTime Conditionally Start time of a discount for an item whose price a seller has reduced with the Promotional Price Display feature.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .QuantitySold
int Always The total number of items purchased so far (in the listing's lifetime). Subtract this from Quantity to determine the quantity available.

If the listing has Item Variations, then in GetItem (and related calls) and GetItemTransactions, Item.SellingStatus.QuantitySold contains the sum of all quantities sold across all variations in the listing, and Variation.SellingStatus.QuantitySold contains the number of items sold for that variation.

In GetSellerTransactions, Transaction.Item.SellingStatus.QuantitySold contains the number of items sold in that order line item.

For order line item calls, also see Transaction.QuantityPurchased for the number of items purchased in the order line item.
In multi-variation listings, this value matches total quantity sold across all variations.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .QuantitySoldByPickupInStore
int Always Indicates the total quantity of items sold and picked up by buyers using the In-Store Pickup option. This value is the total number of items purchased by one or more buyers using the In-Store Pickup option, and is not the total number of In-Store Pickup orders. So, if two buyers selected the In-Store Pickup option, but each of these buyers bought a quantity of five of these items (in same purchase), the Item.SellingStatus.QuantitySoldByPickupInStore value would be '10' and not '2'.

In the case of multi-variation, fixed-price listings, each Item.Variations.Variation.SellingStatus.QuantitySoldByPickupInStore value indicates the total quantity of that corresponding item variation (for example, large blue shirts) sold and picked up by buyers using the In-Store Pickup option, and the Item.SellingStatus.QuantitySoldByPickupInStore value would be the total quantity of all item variations sold for the listing.

This field is returned only if the listing is eligible for In-Store Pickup (EligibleForPickupInStore is returned as true).

Note: At this time, the In-Store Pickup feature is generally only available to large retail merchants, and can only be applied to multi-quantity, fixed-price listings.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.ReserveMet boolean Always Indicates whether the reserve price has been met for the listing. Returns true if the reserve price was met or no reserve price was specified.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus
  .SecondChanceEligible
boolean Always Part of the Second Chance Offer feature, indicates whether the seller can extend a second chance offer for the item.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SellingStatus.SoldAsBin boolean Conditionally If this flag appears in the GetItem response, the auction has ended due to the item being sold to a seller using the Buy It Now option. This flag is not relevant for fixed-priced listings.
Item.ShippingDetails ShippingDetailsType Conditionally The shipping-related details for an order, including flat and calculated shipping costs.

Note: For sellers who are using a shipping (aka Fulfillment) business policy to create/revise/relist an item, none of the fields under the ShippingDetails container are necessary. A fulfillment business policy can be set up and/or modified in My eBay, or via the Account API. A fulfillment business policy is associated to a listing through the Item.SellerProfiles.SellerShippingProfile container.

If you do not use a fulfillment business policy, many of the fields under this ShippingDetails container become required in your request.

New users who list their first items in selected categories on the US site must specify at least one domestic shipping service. This applies to a category if GetCategoryFeatures returns true for Category.ShippingTermsRequired.

For multi-quantity, fixed-price listings, a seller can revise all shipping details of the listing (except for sales tax and for shipping type of Freight) for all unsold items. This applies to both domestic and international shipping. Checkout is not affected for those who bought items prior to the seller's shipping changes—the shipping details that were in effect at the time of purchase are used for that buyer at the time of checkout.

Shipping details are not applicable to any classified ad listings, as shipping/delivery/pickup is handled by the buyer and seller off of the eBay platform.

Note: To create a listing that is 'Local Pickup only' (buyer picks up, with no shipping/delivery available), the user does the following two things:
  • Either omit the entire ShippingDetails container, or pass in an empty ShippingDetails container - <ShippingDetails/>
  • Pass in one ShipToLocations field, with its value set to None - <ShipToLocations>None</ShipToLocations>

For GetMyeBayBuying, GetMyeBaySelling: ShippingDetails is not returned.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Shipping costs
    Revising Items for restrictions on changing item properties with ReviseItem

Item.ShippingDetails
  .CalculatedShippingDiscount
CalculatedShippingDiscountType Conditionally If a calculated shipping discount was offered for the domestic shipping services, this contains the details of the calculated shipping discount. Otherwise, it is not returned. Only returned if the calling user is the seller.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .CalculatedShippingDiscount
  .DiscountName
DiscountNameCodeType Conditionally This enumeration value indicates the type of calculated shipping discount rule that is being applied. Each rule is explained below.

Applicable values:

CombinedItemWeight
(in/out) Shipping cost is based on the total weight of all individual items. This is simply a way to define how shipping is to be calculated--there is no discount for the buyer with this selection. For calculated shipping discount profile only.
IndividualItemWeight
(in/out) Shipping cost is the total of what it would cost to ship each item individually. This is simply a way to define how shipping is to be calculated--there is no discount for the buyer with this selection. For calculated shipping discount profile only.
WeightOff
(in/out) The amount of weight to subtract for each item beyond the first item before shipping costs are calculated. For example, there may be less packing material when the items are combined in one box than if they were shipped individually. Let's say the buyer purchases three items, each 10 oz. in weight, and the seller set WeightOff to 2 oz. The combined weight would be 30 oz., but since the seller specified 2 oz. off, the total weight for shipping cost calculation would be 30 oz. - (two additional items x 2 oz.), or 26 oz. For calculated shipping discount profile only.

(Not all values in DiscountNameCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-discount-profiles.html.

Item.ShippingDetails
  .CalculatedShippingDiscount
  .DiscountProfile
DiscountProfileType Conditionally,
repeatable: [0..*]
This container provides details of this particular calculated shipping discount profile.

For SetShippingDiscountProfiles: If the ModifyActionCode value is set to Update, all details of the modified version of the profile must be provided. If the ModifyActionCode value is set to Delete, the DiscountProfileID is required, the MappingDiscountProfileID is optional, and all other fields of the container are no longer applicable.

Restrictions on how many profiles can exist for a given discount rule are discussed in the Features Guide documentation on Shipping Cost Discount Profiles.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-discount-profiles.html.

Item.ShippingDetails
  .CalculatedShippingDiscount
  .DiscountProfile
  .DiscountProfileID
string Conditionally The unique eBay-created unique identifier for the shipping discount, assigned when the shipping discount rule is created.
In a SetShippingDiscountProfiles call,
  • If the value of ModifyActionCode is set to Add, this field is not applicable and is ignored
  • If provided.
  • If the value of Mod
  • IfyActionCode is set to Update, all fields of the modified rule must be provided, even if the values are not changing.
  • If the value of ModifyActionCode is set to Delete, either the DiscountProfileID value or is DiscountProfileName value is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored.


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .CalculatedShippingDiscount
  .DiscountProfile
  .DiscountProfileName
string Conditionally The seller-provided title for the shipping discount rule.
In a SetShippingDiscountProfiles call,
  • If the value of ModifyActionCode is set to Add, this field is ignored (if provided) if this is the first shipping discount rule being created, but this field is required if there is more than one existing shipping discount rule of that type (flat rate or calculated)
  • If the value of ModifyActionCode is set to Update, all fields of the modified rule must be provided, even if the values are not changing
  • If the value of ModifyActionCode is set to Delete, the DiscountProfileID is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored
  • If the value of ModifyActionCode is set to Delete, either the DiscountProfileID value or is DiscountProfileName value is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .CalculatedShippingDiscount
  .DiscountProfile
  .MappedDiscountProfileID
string Conditionally For SetShippingDiscountProfiles, if MappedDiscountProfileID is omitted when ModifyActionCode is set to Delete, any listings currently using the profile identified by DiscountProfileID will have that profile removed.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .CalculatedShippingDiscount
  .DiscountProfile.WeightOff
MeasureType (decimal) Conditionally The amount of weight to subtract for each item beyond the first item before shipping costs are calculated. For example, there may be less packing material when the items are combined in one box than if they were shipped individually. Let's say the buyer purchases three items, each 10 oz. in weight, and the seller set WeightOff to 2 oz. The combined weight would be 30 oz., but since the seller specified 2 oz. off, the total weight for shipping cost calculation would be 30 oz. - (two additional items x 2 oz.), or 26 oz. This field is only applicable for calculated shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .CalculatedShippingDiscount
  .DiscountProfile.WeightOff
  [ attribute unit ]
token Conditionally The amount of weight to subtract for each item beyond the first item before shipping costs are calculated. For example, there may be less packing material when the items are combined in one box than if they were shipped individually. Let's say the buyer purchases three items, each 10 oz. in weight, and the seller set WeightOff to 2 oz. The combined weight would be 30 oz., but since the seller specified 2 oz. off, the total weight for shipping cost calculation would be 30 oz. - (two additional items x 2 oz.), or 26 oz. This field is only applicable for calculated shipping.
Item.ShippingDetails
  .CalculatedShippingDiscount
  .DiscountProfile.WeightOff
  [ attribute measurementSystem ]
MeasurementSystemCodeType Conditionally The amount of weight to subtract for each item beyond the first item before shipping costs are calculated. For example, there may be less packing material when the items are combined in one box than if they were shipped individually. Let's say the buyer purchases three items, each 10 oz. in weight, and the seller set WeightOff to 2 oz. The combined weight would be 30 oz., but since the seller specified 2 oz. off, the total weight for shipping cost calculation would be 30 oz. - (two additional items x 2 oz.), or 26 oz. This field is only applicable for calculated shipping.

For a list of possible enumeration values, see MeasurementSystemCodeType.
Item.ShippingDetails
  .CalculatedShippingRate
CalculatedShippingRateType Conditionally Details pertinent to one or more items for which calculated shipping has been offered by the seller, such as package dimension and weight and packaging/handling costs. If your call specifies a large-dimension item listed with UPS, see Dimensional Weight limit on UPS shipping services results in failure of shipping calculator.

Note: The CalculatedShippingRate container should only be used to specify values for the InternationalPackagingHandlingCosts and/or PackagingHandlingCosts fields. The rest of the fields in the CalculatedShippingRate container are used to specify package dimensions and package weight, and these values should now be specified in the ShippingPackageDetails container instead.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .CalculatedShippingRate
  .InternationalPackagingHandlingCosts
AmountType (double) Always This field shows any package handling cost applied to international shipping. This cost will be in addition to any shipping cost applicable to each international shipping service option.

For international calculated shipping only.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .CalculatedShippingRate
  .InternationalPackagingHandlingCosts
  [ attribute currencyID ]
CurrencyCodeType Conditionally This field shows any package handling cost applied to international shipping. This cost will be in addition to any shipping cost applicable to each international shipping service option.

For international calculated shipping only.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .CalculatedShippingRate
  .PackagingHandlingCosts
AmountType (double) Always Fees a seller might assess for the shipping of the item (in addition to whatever the shipping service might charge). Any packaging/handling cost specified on input is added to each shipping service on output.

If domestic and international calculated shipping is offered for an item and if packaging/handling cost is specified only for domestic shipping, that cost will be applied by eBay as the international packaging/handling cost. (To specify a international packaging/handling cost, you must always specify a domestic packaging/handling cost, even if it is 0.) When UPS is one of the shipping services offered by the seller, package dimensions are required on list/relist/revise. For calculated shipping only. Note: If the listing only has one domestic shipping service and it is free shipping, the domestic package handling cost will be ignored and will not be applied to the listing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .CalculatedShippingRate
  .PackagingHandlingCosts
  [ attribute currencyID ]
CurrencyCodeType Conditionally Fees a seller might assess for the shipping of the item (in addition to whatever the shipping service might charge). Any packaging/handling cost specified on input is added to each shipping service on output.

If domestic and international calculated shipping is offered for an item and if packaging/handling cost is specified only for domestic shipping, that cost will be applied by eBay as the international packaging/handling cost. (To specify a international packaging/handling cost, you must always specify a domestic packaging/handling cost, even if it is 0.) When UPS is one of the shipping services offered by the seller, package dimensions are required on list/relist/revise. For calculated shipping only. Note: If the listing only has one domestic shipping service and it is free shipping, the domestic package handling cost will be ignored and will not be applied to the listing.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .ExcludeShipToLocation
string Conditionally,
repeatable: [0..*]

Use this field in an Add/Revise/Relist call to specify an international country or region, or a special domestic location, such as 'PO Box' (in US) or 'Packstation' (in DE), to where you will not ship the associated item. Repeat this element in the call request for each location that you want to exclude as a shipping destination for your item.

The exclude ship-to location values are eBay regions and countries. To see the valid exclude ship-to locations for a specified site, call GeteBayDetails with DetailName set to ExcludeShippingLocationDetails, and then look for the ExcludeShippingLocationDetails.Location fields in the response. Repeat GeteBayDetails for each site on which you list.

This field works in conjunction with Item.ShipToLocations to create a set of international countries and regions to where you will, and will not, ship. You can list a region in the ShipToLocations field, then exclude specific countries within that region with this field (for example, you can specify Africa in ShipToLocations, yet exclude Chad with a ExcludeShipToLocation setting). In addition, if your ShipToLocations is Worldwide, you can use this field to specify both regions and countries that you want to exclude from your shipping destinations.

Note: The ShipToLocations and ShippingDetails.ExcludeShipToLocation containers are not applicable for motor vehicle listings on the US, CA, or UK marketplaces. If these containers are sent in the request, they are ignored and a warning is returned.
You can specify a default set of locations to where you will not ship in My eBay. If you create an Exclude Ship-To List, it is, by default, in effect when you list items. However, if you specify any value in this field on input, it nullifies the default settings in your Exclude Ship-To List. (If you use ExcludeShipToLocation when you list an item, you will need to list all the locations to where you will not ship the associated item, regardless of the default settings in your Exclude Ship-To List.)

Specify none in this field to override the default Exclude Ship-To List you might have set up in My eBay and indicate that you do not want to exclude any shipping locations from the respective item listing.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions responses on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

Applicable values: See CountryCodeType, ShippingRegionCodeType
Item.ShippingDetails
  .FlatShippingDiscount
FlatShippingDiscountType Conditionally If a flat rate shipping discount was offered for the domestic shipping services, this contains the details of the flat rate shipping discount. Otherwise, it is not returned. Only returned if the calling user is the seller.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountName
DiscountNameCodeType Conditionally The type of discount or rule that is being used by the profile. The value corresponding to the selected rule is set in the same-named field of FlatShippingDiscount.DiscountProfile.

Applicable values:

EachAdditionalAmount
(in/out) The cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalAmount to $6. The cost to ship three items would normally be $24, but since the seller specified $6, the total shipping cost would be $8 + $6 + $6, or $20. For flat shipping discount profile only.
EachAdditionalAmountOff
(in/out) The amount by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalAmountOff to $2. The cost to ship three items would normally be $24, but since the seller specified $2, the total shipping cost would be $24 - (two additional items x $2), or $20. For flat shipping discount profile only.
EachAdditionalPercentOff
(in/out) The percentage by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalPercentOff to 0.25. The cost to ship three items would normally be $24, but since the seller specified 0.25 ($2 out of 8), the total shipping cost would be $24 - (two additional items x $2), or $20. For flat rate shipping discount profile only.

(Not all values in DiscountNameCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-discount-profiles.html.

Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountProfile
DiscountProfileType Conditionally,
repeatable: [0..*]
Details of this particular flat-rate shipping discount profile. If the value of ModifyActionCode is Modify, all details of the new version of the profile must be provided. If ModifyActionCode is Delete, DiscountProfileID is required, MappingDiscountProfileID is optional, and all other fields of DiscountProfile are ignored.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-discount-profiles.html.

Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountProfile
  .DiscountProfileID
string Conditionally The unique eBay-created unique identifier for the shipping discount, assigned when the shipping discount rule is created.
In a SetShippingDiscountProfiles call,
  • If the value of ModifyActionCode is set to Add, this field is not applicable and is ignored
  • If provided.
  • If the value of Mod
  • IfyActionCode is set to Update, all fields of the modified rule must be provided, even if the values are not changing.
  • If the value of ModifyActionCode is set to Delete, either the DiscountProfileID value or is DiscountProfileName value is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored.


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountProfile
  .DiscountProfileName
string Conditionally The seller-provided title for the shipping discount rule.
In a SetShippingDiscountProfiles call,
  • If the value of ModifyActionCode is set to Add, this field is ignored (if provided) if this is the first shipping discount rule being created, but this field is required if there is more than one existing shipping discount rule of that type (flat rate or calculated)
  • If the value of ModifyActionCode is set to Update, all fields of the modified rule must be provided, even if the values are not changing
  • If the value of ModifyActionCode is set to Delete, the DiscountProfileID is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored
  • If the value of ModifyActionCode is set to Delete, either the DiscountProfileID value or is DiscountProfileName value is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountProfile
  .EachAdditionalAmount
AmountType (double) Conditionally The cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set the EachAdditionalAmount to $6. The cost to ship three items would normally be $24, but since the seller specified $6, the total shipping cost would be $8 + $6 + $6, or $20. This field is only applicable for flat-rate shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountProfile
  .EachAdditionalAmount
  [ attribute currencyID ]
CurrencyCodeType Conditionally The cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set the EachAdditionalAmount to $6. The cost to ship three items would normally be $24, but since the seller specified $6, the total shipping cost would be $8 + $6 + $6, or $20. This field is only applicable for flat-rate shipping.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountProfile
  .EachAdditionalAmountOff
AmountType (double) Conditionally The amount by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalAmountOff to $2. The cost to ship three items would normally be $24, but since the seller specified $2, the total shipping cost would be $24 - (two additional items x $2), or $20. This field is only applicable for flat-rate shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountProfile
  .EachAdditionalAmountOff
  [ attribute currencyID ]
CurrencyCodeType Conditionally The amount by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalAmountOff to $2. The cost to ship three items would normally be $24, but since the seller specified $2, the total shipping cost would be $24 - (two additional items x $2), or $20. This field is only applicable for flat-rate shipping.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .FlatShippingDiscount
  .DiscountProfile
  .EachAdditionalPercentOff
float Conditionally The percentage by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalPercentOff to 0.25. The cost to ship three items would normally be $24, but since the seller specified 0.25 ($2 out of $8), the total shipping cost would be $24 - (two additional items x $2), or $20. This field is only applicable for flat-rate shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails.GetItFast boolean Always
Note: This field is deprecated and will stop being returned in order management calls on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .GlobalShipping
boolean Conditionally Note: On the US marketplace, the Global Shipping Program is scheduled to be replaced by a new intermediated international shipping program called eBay International Shipping. US Sellers opted in to the Global Shipping Program will automatically get opted into eBay International Shipping once it becomes available to them. All US sellers will be migrated by March 31, 2023. eBay International Shipping is an account level setting, and no field will need to be set in a add/revise call to enable this setting. As long as the US seller's account is opted in to eBay International Shipping, this shipping option will be automatically enabled for all listings where international shipping is available. Even if the US seller is opted into eBay International Shipping, that same seller can still also specify individual international shipping service options through the ShippingDetails.InternationalShippingServiceOption container. In an Add/Revise/Relist call, this boolean field can be included and set to True if the seller would like to use eBay's Global Shipping Program for orders that are shipped internationally.

In 'Get' calls, if this field is returned as True, it indicates that international shipping through the Global Shipping Program is available for the listing. If this field is returned as False, the seller is responsible for shipping the item internationally using one of the specified international shipping service options set for the listing.

When calling RelistFixedPriceItem, RelistItem, ReviseFixedPriceItem or ReviseItem, you can omit this field if its value doesn't need to change.



DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
CalculatedShippingDiscountType Conditionally This value is returned only if the seller is making the call. If a calculated shipping discount was offered for the international shipping services, this contains the details of the calculated shipping discount. Otherwise, it is not returned.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
  .DiscountName
DiscountNameCodeType Conditionally This enumeration value indicates the type of calculated shipping discount rule that is being applied. Each rule is explained below.

Applicable values:

CombinedItemWeight
(in/out) Shipping cost is based on the total weight of all individual items. This is simply a way to define how shipping is to be calculated--there is no discount for the buyer with this selection. For calculated shipping discount profile only.
IndividualItemWeight
(in/out) Shipping cost is the total of what it would cost to ship each item individually. This is simply a way to define how shipping is to be calculated--there is no discount for the buyer with this selection. For calculated shipping discount profile only.
WeightOff
(in/out) The amount of weight to subtract for each item beyond the first item before shipping costs are calculated. For example, there may be less packing material when the items are combined in one box than if they were shipped individually. Let's say the buyer purchases three items, each 10 oz. in weight, and the seller set WeightOff to 2 oz. The combined weight would be 30 oz., but since the seller specified 2 oz. off, the total weight for shipping cost calculation would be 30 oz. - (two additional items x 2 oz.), or 26 oz. For calculated shipping discount profile only.

(Not all values in DiscountNameCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-discount-profiles.html.

Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
  .DiscountProfile
DiscountProfileType Conditionally,
repeatable: [0..*]
This container provides details of this particular calculated shipping discount profile.

For SetShippingDiscountProfiles: If the ModifyActionCode value is set to Update, all details of the modified version of the profile must be provided. If the ModifyActionCode value is set to Delete, the DiscountProfileID is required, the MappingDiscountProfileID is optional, and all other fields of the container are no longer applicable.

Restrictions on how many profiles can exist for a given discount rule are discussed in the Features Guide documentation on Shipping Cost Discount Profiles.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-discount-profiles.html.

Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
  .DiscountProfile
  .DiscountProfileID
string Conditionally The unique eBay-created unique identifier for the shipping discount, assigned when the shipping discount rule is created.
In a SetShippingDiscountProfiles call,
  • If the value of ModifyActionCode is set to Add, this field is not applicable and is ignored
  • If provided.
  • If the value of Mod
  • IfyActionCode is set to Update, all fields of the modified rule must be provided, even if the values are not changing.
  • If the value of ModifyActionCode is set to Delete, either the DiscountProfileID value or is DiscountProfileName value is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored.


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
  .DiscountProfile
  .DiscountProfileName
string Conditionally The seller-provided title for the shipping discount rule.
In a SetShippingDiscountProfiles call,
  • If the value of ModifyActionCode is set to Add, this field is ignored (if provided) if this is the first shipping discount rule being created, but this field is required if there is more than one existing shipping discount rule of that type (flat rate or calculated)
  • If the value of ModifyActionCode is set to Update, all fields of the modified rule must be provided, even if the values are not changing
  • If the value of ModifyActionCode is set to Delete, the DiscountProfileID is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored
  • If the value of ModifyActionCode is set to Delete, either the DiscountProfileID value or is DiscountProfileName value is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
  .DiscountProfile
  .MappedDiscountProfileID
string Conditionally For SetShippingDiscountProfiles, if MappedDiscountProfileID is omitted when ModifyActionCode is set to Delete, any listings currently using the profile identified by DiscountProfileID will have that profile removed.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
  .DiscountProfile.WeightOff
MeasureType (decimal) Conditionally The amount of weight to subtract for each item beyond the first item before shipping costs are calculated. For example, there may be less packing material when the items are combined in one box than if they were shipped individually. Let's say the buyer purchases three items, each 10 oz. in weight, and the seller set WeightOff to 2 oz. The combined weight would be 30 oz., but since the seller specified 2 oz. off, the total weight for shipping cost calculation would be 30 oz. - (two additional items x 2 oz.), or 26 oz. This field is only applicable for calculated shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
  .DiscountProfile.WeightOff
  [ attribute unit ]
token Conditionally The amount of weight to subtract for each item beyond the first item before shipping costs are calculated. For example, there may be less packing material when the items are combined in one box than if they were shipped individually. Let's say the buyer purchases three items, each 10 oz. in weight, and the seller set WeightOff to 2 oz. The combined weight would be 30 oz., but since the seller specified 2 oz. off, the total weight for shipping cost calculation would be 30 oz. - (two additional items x 2 oz.), or 26 oz. This field is only applicable for calculated shipping.
Item.ShippingDetails
  .InternationalCalculatedShippingDiscount
  .DiscountProfile.WeightOff
  [ attribute measurementSystem ]
MeasurementSystemCodeType Conditionally The amount of weight to subtract for each item beyond the first item before shipping costs are calculated. For example, there may be less packing material when the items are combined in one box than if they were shipped individually. Let's say the buyer purchases three items, each 10 oz. in weight, and the seller set WeightOff to 2 oz. The combined weight would be 30 oz., but since the seller specified 2 oz. off, the total weight for shipping cost calculation would be 30 oz. - (two additional items x 2 oz.), or 26 oz. This field is only applicable for calculated shipping.

For a list of possible enumeration values, see MeasurementSystemCodeType.
Item.ShippingDetails
  .InternationalFlatShippingDiscount
FlatShippingDiscountType Conditionally This value is returned only if the seller is making the call. If a flat rate shipping discount was offered for the international shipping services, this contains the details of the flat rate shipping discount. Otherwise, it is not returned.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountName
DiscountNameCodeType Conditionally The type of discount or rule that is being used by the profile. The value corresponding to the selected rule is set in the same-named field of FlatShippingDiscount.DiscountProfile.

Applicable values:

EachAdditionalAmount
(in/out) The cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalAmount to $6. The cost to ship three items would normally be $24, but since the seller specified $6, the total shipping cost would be $8 + $6 + $6, or $20. For flat shipping discount profile only.
EachAdditionalAmountOff
(in/out) The amount by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalAmountOff to $2. The cost to ship three items would normally be $24, but since the seller specified $2, the total shipping cost would be $24 - (two additional items x $2), or $20. For flat shipping discount profile only.
EachAdditionalPercentOff
(in/out) The percentage by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalPercentOff to 0.25. The cost to ship three items would normally be $24, but since the seller specified 0.25 ($2 out of 8), the total shipping cost would be $24 - (two additional items x $2), or $20. For flat rate shipping discount profile only.

(Not all values in DiscountNameCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-discount-profiles.html.

Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountProfile
DiscountProfileType Conditionally,
repeatable: [0..*]
Details of this particular flat-rate shipping discount profile. If the value of ModifyActionCode is Modify, all details of the new version of the profile must be provided. If ModifyActionCode is Delete, DiscountProfileID is required, MappingDiscountProfileID is optional, and all other fields of DiscountProfile are ignored.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-discount-profiles.html.

Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountProfile
  .DiscountProfileID
string Conditionally The unique eBay-created unique identifier for the shipping discount, assigned when the shipping discount rule is created.
In a SetShippingDiscountProfiles call,
  • If the value of ModifyActionCode is set to Add, this field is not applicable and is ignored
  • If provided.
  • If the value of Mod
  • IfyActionCode is set to Update, all fields of the modified rule must be provided, even if the values are not changing.
  • If the value of ModifyActionCode is set to Delete, either the DiscountProfileID value or is DiscountProfileName value is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored.


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountProfile
  .DiscountProfileName
string Conditionally The seller-provided title for the shipping discount rule.
In a SetShippingDiscountProfiles call,
  • If the value of ModifyActionCode is set to Add, this field is ignored (if provided) if this is the first shipping discount rule being created, but this field is required if there is more than one existing shipping discount rule of that type (flat rate or calculated)
  • If the value of ModifyActionCode is set to Update, all fields of the modified rule must be provided, even if the values are not changing
  • If the value of ModifyActionCode is set to Delete, the DiscountProfileID is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored
  • If the value of ModifyActionCode is set to Delete, either the DiscountProfileID value or is DiscountProfileName value is required, the MappingDiscountProfileID is optional, and all other fields of the DiscountProfile container are ignored


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountProfile
  .EachAdditionalAmount
AmountType (double) Conditionally The cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set the EachAdditionalAmount to $6. The cost to ship three items would normally be $24, but since the seller specified $6, the total shipping cost would be $8 + $6 + $6, or $20. This field is only applicable for flat-rate shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountProfile
  .EachAdditionalAmount
  [ attribute currencyID ]
CurrencyCodeType Conditionally The cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set the EachAdditionalAmount to $6. The cost to ship three items would normally be $24, but since the seller specified $6, the total shipping cost would be $8 + $6 + $6, or $20. This field is only applicable for flat-rate shipping.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountProfile
  .EachAdditionalAmountOff
AmountType (double) Conditionally The amount by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalAmountOff to $2. The cost to ship three items would normally be $24, but since the seller specified $2, the total shipping cost would be $24 - (two additional items x $2), or $20. This field is only applicable for flat-rate shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountProfile
  .EachAdditionalAmountOff
  [ attribute currencyID ]
CurrencyCodeType Conditionally The amount by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalAmountOff to $2. The cost to ship three items would normally be $24, but since the seller specified $2, the total shipping cost would be $24 - (two additional items x $2), or $20. This field is only applicable for flat-rate shipping.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .InternationalFlatShippingDiscount
  .DiscountProfile
  .EachAdditionalPercentOff
float Conditionally The percentage by which to reduce the cost to ship each item beyond the first item (where the item with the highest shipping cost is selected by eBay as the first item). Let's say the buyer purchases three items, each set to ship for $8, and the seller set EachAdditionalPercentOff to 0.25. The cost to ship three items would normally be $24, but since the seller specified 0.25 ($2 out of $8), the total shipping cost would be $24 - (two additional items x $2), or $20. This field is only applicable for flat-rate shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalPromotionalShippingDiscount
boolean Conditionally On input, this specifies whether to offer the promotional shipping discount for the listing's international shipping services (only applicable if the seller has a promotional shipping discount in effect at the moment).

Returned on output only if the seller is making the call. This value indicates whether the promotional shipping discount is being offered for the international shipping services of this listing (if the listing is still active—this is only possible if the seller has a promotional shipping discount in effect at the moment) or whether the discount was offered at the time the listing ended.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .InternationalShippingDiscountProfileID
string Conditionally On input, this is the ID of the shipping discount to offer for the international shipping services (where the shipping discount is either of type FlatShippingDiscount or CalculatedShippingDiscount).

In the RelistItem and ReviseItem family of calls, you can remove the existing InternationalShippingDiscountProfileID associated with the item by supplying a value of 0 (zero).

Returned on output only if the seller is making the call. The value is the ID of the shipping discount offered and corresponds to whichever is returned: FlatShippingDiscount or CalculatedShippingDiscount.

If the user created a shipping discount profile, use InternationalShippingDiscountProfileID.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .InternationalShippingServiceOption
InternationalShippingServiceOptionsType Conditionally,
repeatable: [0..*]
Shipping costs and options related to an international shipping service. If used, at least one domestic shipping service must also be provided in ShippingServiceOptions.

If you specify multiple InternationalShippingServiceOption nodes, the repeating nodes must be contiguous. That is, you cannot insert other nodes between InternationalShippingServiceOption nodes.

All specified domestic and international shipping services must be the same shipping type (for example, Flat versus Calculated).

A seller can offer up to four domestic shipping services and up to five international shipping services. However, if the seller is opted in to the Global Shipping Program or eBay International Shipping, only four other international shipping services may be offered (regardless of whether or not Global Shipping or eBay International Shipping is offered for the listing).

If you specify ShippingDetails when you revise or relist an item but you omit InternationalShippingServiceOption, eBay will drop the international shipping services (except the Global Shipping Program or eBay International Shipping) from the listing. This may also have unintended side effects, as other fields that depend on this data may be dropped as well. To retain the shipping services and dependent fields when you modify other shipping details, it may be simplest to specify all ShippingDetails that you still want to include in the listing.

For GetItemShipping, results are filtered: if any service is not available in the buyer's region, it is removed. If no services remain after this filtering, a warning is returned.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Repeating (unbounded) fields for rules regarding repeating instances of a nodes (nodes for which maxOccurs is "unbounded" or is greater than 1).

Item.ShippingDetails
  .InternationalShippingServiceOption
  .ShippingService
token Conditionally An international shipping service being offered by the seller to ship an item to a buyer. For a list of valid values, call GeteBayDetails with DetailName set to ShippingServiceDetails.

To view the full list of International shipping service options in the response, look for the ShippingService fields in the ShippingServiceDetails containers that contain a InternationalService = true field, as this indicates that the ShippingService value is an International shipping service option.

The ShippingServiceDetails.ValidForSellingFlow flag must also be present. Otherwise, that particular shipping service option is no longer valid and cannot be offered to buyers through a listing.

For flat and calculated shipping.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See GeteBayDetails.



Applicable values: See ShippingServiceCodeType
Item.ShippingDetails
  .InternationalShippingServiceOption
  .ShippingServiceAdditionalCost
AmountType (double) Conditionally The cost of shipping each additional item if the same buyer purchases multiple quantity of the same line item. This field is required when creating a multiple-quantity, fixed-price listing. Generally, the seller will give the buyer a shipping discount if that buyer purchases multiple quantity of the item, so this value should usually be less than the value set for ShippingServiceCost.

The value of this field can even be set to 0 if the seller wants to encourage buyers to buy multiple quantity of the item, or it could be that the seller can fit multiple quantities of the line item in a single shipping package, so the seller is just passing this shipping savings onto the buyer. This field is not applicable for single-quantity listings.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalShippingServiceOption
  .ShippingServiceAdditionalCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally The cost of shipping each additional item if the same buyer purchases multiple quantity of the same line item. This field is required when creating a multiple-quantity, fixed-price listing. Generally, the seller will give the buyer a shipping discount if that buyer purchases multiple quantity of the item, so this value should usually be less than the value set for ShippingServiceCost.

The value of this field can even be set to 0 if the seller wants to encourage buyers to buy multiple quantity of the item, or it could be that the seller can fit multiple quantities of the line item in a single shipping package, so the seller is just passing this shipping savings onto the buyer. This field is not applicable for single-quantity listings.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .InternationalShippingServiceOption
  .ShippingServiceCost
AmountType (double) Conditionally The base cost of shipping the item using the shipping service specified in the ShippingService field. In the case of a multiple-quantity, fixed-price listing, the ShippingServiceAdditionalCost field shows the cost to ship each additional item if the buyer purchases multiple quantity of the same line item.

When returned by GetItemShipping, it includes the packaging and handling cost. For flat and calculated shipping.

If a shipping service has been specified (even LocalPickup), GetItem returns the shipping service cost, even if the cost is zero. Otherwise, cost is not returned.

If this is for calculated shipping for a listing that has not yet ended, note that the cost cannot be determined until the listing has ended and the buyer has specified a postal code.

For GetItemShipping, promotional shipping savings is reflected in the cost, if applicable. If the promotional shipping option is lower than other shipping services being offered, the savings is reflected in the returned shipping cost. The shipping service named Promotional Shipping Service (or whatever is the localized name for it) is included among the shipping services. If the promotional shipping cost is lower than the cost of other shipping services being offered, it is presented first in the list. (The LOWEST shipping service cost is always presented first, regardless of whether there is promotional shipping.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See https://developer.ebay.com/api-docs/user-guides/static/trading-user-guide/shipping-types-rates.html.

Item.ShippingDetails
  .InternationalShippingServiceOption
  .ShippingServiceCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally The base cost of shipping the item using the shipping service specified in the ShippingService field. In the case of a multiple-quantity, fixed-price listing, the ShippingServiceAdditionalCost field shows the cost to ship each additional item if the buyer purchases multiple quantity of the same line item.

When returned by GetItemShipping, it includes the packaging and handling cost. For flat and calculated shipping.

If a shipping service has been specified (even LocalPickup), GetItem returns the shipping service cost, even if the cost is zero. Otherwise, cost is not returned.

If this is for calculated shipping for a listing that has not yet ended, note that the cost cannot be determined until the listing has ended and the buyer has specified a postal code.

For GetItemShipping, promotional shipping savings is reflected in the cost, if applicable. If the promotional shipping option is lower than other shipping services being offered, the savings is reflected in the returned shipping cost. The shipping service named Promotional Shipping Service (or whatever is the localized name for it) is included among the shipping services. If the promotional shipping cost is lower than the cost of other shipping services being offered, it is presented first in the list. (The LOWEST shipping service cost is always presented first, regardless of whether there is promotional shipping.)

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .InternationalShippingServiceOption
  .ShippingServicePriority
int Conditionally This integer value controls the order (relative to other shipping services) in which the corresponding ShippingService will appear in the View Item and Checkout page. Sellers can specify up to five international shipping services (with five InternationalShippingServiceOption containers), so valid values are 1, 2, 3, 4, and 5. A shipping service with a ShippingServicePriority value of 1 appears at the top. Conversely, a shipping service with a ShippingServicePriority value of 5 appears at the bottom of a list of five shipping service options. If the Global Shipping Program is enabled on the listing for international shipping, only four additional shipping services may be specified.

If this field is omitted from international shipping service options, the order of the shipping service options in View Item and Checkout pages will be determined by the order that these shipping service options are presented in the request payload of an Add/Revise/Relist call.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .InternationalShippingServiceOption
  .ShipToLocation
string Conditionally,
repeatable: [0..*]
An international location or region to where the item seller will ship the item.

Use GeteBayDetails with DetailName set to ShippingLocationDetails to determine which locations are valid per site. In the GeteBayDetails response, look for the ShippingLocationDetails.ShippingLocation fields.

For the AddItem family of calls, this field is required if any international shipping service is specified.

For GetOrders and GetItemTransactions only: If using Trading WSDL Version 1019 or above, ShipToLocation fields will only be returned to the buyer or seller, and no longer returned at all to third parties. If using a Trading WSDL older than Version 1019, ShipToLocation fields are only returned to the buyer or seller, and a string value of Unavailable will be returned to all third parties.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping information.



Applicable values: See CountryCodeType, ShippingRegionCodeType
Item.ShippingDetails
  .PromotionalShippingDiscount
boolean Conditionally On input, this specifies whether to offer the promotional shipping discount for the domestic shipping services of this listing (only applicable if the seller has a promotional shipping discount in effect at the moment).

Returned on output only if the seller is making the call. This indicates whether the promotional shipping discount is being offered for the domestic shipping services of this listing (if the listing is still active—this is only possible if the seller has a promotional shipping discount in effect at the moment) or whether the discount was offered at the time the listing ended.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .PromotionalShippingDiscountDetails
PromotionalShippingDiscountDetailsType Conditionally This value is returned only if the seller is making the call. Contains details of the promotional shipping discount, if such is being offered while the listing is active or if it was offered at the time the listing ended.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .PromotionalShippingDiscountDetails
  .DiscountName
DiscountNameCodeType Conditionally The type of promotional shipping discount that is detailed in the profile. If the discount type is MaximumShippingCostPerOrder, see ShippingCost. If the discount type is ShippingCostXForAmountY, see ShippingCost and OrderAmount. If the discount type is ShippingCostXForItemCountN, see ShippingCost and ItemCount.

Applicable values:

MaximumShippingCostPerOrder
(in/out) The shipping cost will not exceed this. For promotional discount only.
ShippingCostXForAmountY
(in/out) Shipping cost X applies if the total cost of items purchased is Y. For promotional discount only.
ShippingCostXForItemCountN
(in/out) Shipping cost X applies if the total number of items purchased is N. For promotional discount only.

(Not all values in DiscountNameCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .PromotionalShippingDiscountDetails
  .ItemCount
int Conditionally This is the number of items when DiscountName is set to ShippingCostXForItemsY.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .PromotionalShippingDiscountDetails
  .OrderAmount
AmountType (double) Conditionally This is the cost Y of the order (not including shipping cost) when DiscountName is set to ShippingCostXForAmountY.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .PromotionalShippingDiscountDetails
  .OrderAmount
  [ attribute currencyID ]
CurrencyCodeType Conditionally This is the cost Y of the order (not including shipping cost) when DiscountName is set to ShippingCostXForAmountY.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .PromotionalShippingDiscountDetails
  .ShippingCost
AmountType (double) Conditionally This is shipping cost X when DiscountName is either ShippingCostXForAmountY or ShippingCostXForItemCountN, and is the maximum cost when DiscountName is MaximumShippingCostPerOrder.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .PromotionalShippingDiscountDetails
  .ShippingCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally This is shipping cost X when DiscountName is either ShippingCostXForAmountY or ShippingCostXForItemCountN, and is the maximum cost when DiscountName is MaximumShippingCostPerOrder.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .RateTableDetails
RateTableDetailsType Conditionally This container is used to reference and apply a seller's domestic and/or international shipping rate tables to a listing. Shipping rate tables allow sellers to configure specific shipping costs based on the shipping destinations and level of service (e.g. economy, standard, expedited, and one-day). Generally speaking, sellers want to use these shipping rate tables so they can charge a higher shipping cost to the buyer whenever shipping costs are higher for them as well. For example, shipping to Alaska or Hawaii is generally more expensive than shipping to any other of the 48 US states, or in regards to international shipping, shipping to some regions and countries are more expensive than others.

Sellers configure domestic and international shipping rate tables in My eBay Shipping Preferences. To apply shipping rate tables to a listing, the shipping cost type must be flat-rate.

For domestic shipping rate tables, the three supported domestic regions are Alaska & Hawaii, US Protectorates (e.g. Puerto Rico and Guam), and APO/FPO destinations, which are US military bases/locations outside of the continental US. In addition to setting one flat rate based on the destination and service level, the seller also has the option of adding an extra charge based on the weight of the shipping package, or they can add a surcharge instead. To determine if a domestic shipping rate table is set up for the seller's account, the GetUser call can be used, and then the seller will look for a value of true in the User.SellerInfo.DomesticRateTable field. Although the GetUser call can be used to see if a domestic shipping rate table exists for the seller's account, details of the shipping rate table, including all specified costs for the different regions, can only be viewed and modified in My eBay Shipping Preferences. This functionality is not yet available in any public APIs.

For international shipping rate tables, specific rates may be set up for any and all of the nine geographical regions and individual countries within those regions. Similar to domestic shipping rate tables, the seller has the option of adding an extra charge based on the weight of the shipping package. Sellers cannot add a surcharge for international shipping. To determine if a international shipping rate table is set up for the seller's account, the GetUser call can be used, and then the seller will look for a value of true in the User.SellerInfo.InternationalRateTable field. Although the GetUser call can be used to see if an international shipping rate table exists for the seller's account, details of the shipping rate table, including all specified costs for the different regions/countries, can only be viewed and modified in My eBay Shipping Preferences. This functionality is not yet available in any public APIs.

If you are applying a domestic or international shipping rate table that specifies a surcharge by weight, you must specify the item weight in the ShippingPackageDetails container's WeightMajor and WeightMinor fields, even though the listing is using flat-rate shipping. Do not use any other fields in the ShippingPackageDetails container because none of those fields are applicable in this use case.

This container is only returned in the 'Get' calls if one or more shipping rate tables have been applied to the listing, and if the call is being made by the seller who listed the item.

Note: The capability to create and use multiple domestic and international shipping rate tables (up to 40 per seller account) has rolled out to the US, Australia, Canada (English and French), Italy, UK, and Germany sites. For other sites, only one domestic and one international shipping rate table may be set up per seller. Whether a seller is using the old default domestic and international shipping rate tables or the new shipping rate tables, these shipping rate tables are set up in My eBay Shipping Preferences or as part of a Shipping Business Policy. If using the Trading API to create a listing that will use the new shipping rate tables, the DomesticRateTableId and InternationalRateTableId fields are used to reference and apply these new shipping rate tables to the listing. If desired, sellers can still use the old default shipping rate tables, but they are not allowed to mix and match old and new shipping rate tables, meaning that they will get an error if they pass in both the old fields (DomesticRateTable and InternationalRateTable) and the new fields (DomesticRateTableId and InternationalRateTableId). The new shipping rate tables have all of the functionality of the old shipping rate tables, plus the seller has access to all domestic regions and not just the special regions (such as Alaska & Hawaii, US Protectorates, and APO/FPO locations in US).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping rate tables for more information on using shipping rate tables..

Item.ShippingDetails
  .RateTableDetails
  .DomesticRateTable
string Conditionally This field is used in an Add/Revise/Relist/Verify call to apply the domestic shipping rate table to the listing.

In all cases, sellers pass in a string value of Default to apply the domestic shipping rate table. The shipping rates and/or surcharges set up in the domestic shipping rate table will only be applicable based on the location of the buyer, and if that shipping service level is covered in one of the specified shipping service options in the listing. Basically, domestic shipping costs and surcharges are set in one or more ShippingServiceOptions containers in the listing, and based on the settings and costs in the domestic shipping rate table, these shipping costs and/or surcharges may be overridden based on the buyer's location. For example, if the buyer lives in Alaska, and the domestic shipping rate table has one or more shipping rates set up for the Alaska & Hawaii domestic region, the buyer will see these rates in the View Item page and not the rates/costs that are defined in the ShippingServiceOptions containers.

If a seller is revising or relisting an item, the domestic shipping rate table can be unassociated from the listing by using the empty tag: <DomesticRateTable />

This field is returned in the 'Get' calls if a domestic rate table is being applied to the listing, and it is only returned for the seller who listed the item.

Note: The capability to create and use multiple domestic and international shipping rate tables (up to 40 per seller account) has rolled out to the US, Australia, Canada (English and French), Italy, UK, and Germany sites. Currently, for sites other than the ones stated, only one domestic and one international shipping rate table may be set up per seller. Until the seller's account is updated with the new shipping rate tables in My eBay, the seller will continue to use the DomesticRateTable and InternationalRateTable tags and pass in Default as the value. Once the seller's account is updated with the new shipping rate tables in My eBay, the seller will be required to use the new DomesticRateTableId and InternationalRateTableId tags, and the DomesticRateTable and InternationalRateTable tags will not work. Note that shipping rate tables can also be applied to Shipping business policies that are applied against a listing. The new shipping rate tables have all of the functionality of the old shipping rate tables, plus the seller has access to all domestic regions and not just the special regions (such as Alaska & Hawaii, US Protectorates, and APO/FPO locations in US).
Max length: 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping rate tables for more information on using shipping rate tables..

Item.ShippingDetails
  .RateTableDetails
  .DomesticRateTableId
string Conditionally Note: This field is only available for sellers on the US, Australia, Canada (English and French), Italy, UK, and Germany sites. The unique shipping rate identifiers that will be passed into this field can be retrieved using the getRateTables call of the Account API, or these identifiers can be viewed in the displayed URL when the seller selects a specific shipping rate table in the Shipping rate tables UI in My eBay.
This field is included in an Add/Revise/Relist/Verify call if the seller wants to apply a customized domestic shipping rate table to the listing. The string value that is supplied in this field is the unique identifier of the shipping rate table. If the DomesticRateTableId field is used, the seller must make sure that the DomesticRateTable and InternationalRateTable fields are not used, as the old and new rate tables cannot be used together or an error will occur.

In domestic shipping rate tables, sellers customize the flat-rate cost of shipping based on shipping destination (region/state/province) and shipping service level (one-day, expedited, standard, economy in US). In addition to setting one flat rate based on the destination and service level, the seller also has the option of adding an extra charge based on the weight of the shipping package, or they can add a surcharge instead.

If the seller is using the Revise or Relist call, they must include the DomesticRateTableId field or the domestic shipping rate table currently being applied to the listing will be unassociated from the listing. If they want to continue using the same domestic shipping rate table, the seller will pass in this identifier. The seller can also change the domestic shipping rate table by passing in the identifier for a different domestic shipping rate table.

If a seller is revising or relisting an item, the domestic shipping rate table can be unassociated from the listing by using the empty tag: <DomesticRateTableId />

This field is returned in the 'Get' calls if a customized domestic rate table is being applied to the listing, and it is only returned for the seller who listed the item.

Note: The capability to create and use multiple domestic and international shipping rate tables (up to 40 per seller account) has rolled out to the US, Australia, Canada (English and French), Italy, UK, and Germany sites. For other sites, only one domestic and one international shipping rate table may be set up per seller. Until the seller's account is updated with the new shipping rate tables in My eBay, the seller will continue to use the DomesticRateTable and InternationalRateTable tags and pass in Default as the value. Once the seller's account is updated with the new shipping rate tables in My eBay, the seller will be required to use the new DomesticRateTableId and InternationalRateTableId tags, and the DomesticRateTable and InternationalRateTable tags will not work. Note that shipping rate tables can also be applied to Shipping business policies that are applied against a listing. The new shipping rate tables have all of the functionality of the old shipping rate tables, plus the seller has access to all domestic regions and not just the special regions (such as Alaska & Hawaii, US Protectorates, and APO/FPO locations in US).
Max length: 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .RateTableDetails
  .InternationalRateTable
string Conditionally This field is used in an Add/Revise/Relist/Verify call to apply the international shipping rate table to the listing. International shipping rate tables can be used only for items listed on the eBay US, UK, and DE sites.

In all cases, sellers pass in a string value of Default to apply the international shipping rate table. The shipping rates set up in the international shipping rate table will only be applicable based on the location of the buyer, and if that shipping service level is covered in one of the specified international shipping service options in the listing. Basically, international shipping costs are set in one or more InternationalShippingServiceOption containers in the listing, and based on the settings and costs in the international shipping rate table, these shipping costs may be overridden based on the buyer's location. For example, if the buyer lives in Argentina, and the international shipping rate table has one or more shipping rates set up for the country of Argentina, the buyer will see these rates in the View Item page and not the rates/costs that are defined in the InternationalShippingServiceOption containers.

If a seller is revising or relisting an item, the international shipping rate table can be unassociated from the listing by using the empty tag: <InternationalRateTable />

This field is returned in the 'Get' calls if an international rate table is being applied to the listing, and it is only returned for the seller who listed the item.

Note: The capability to create and use multiple domestic and international shipping rate tables (up to 40 per seller account) has rolled out to the US, Australia, Canada (English and French), Italy, UK, and Germany sites. Currently, for sites other than the ones stated, only one domestic and one international shipping rate table may be set up per seller. Until the seller's account is updated with the new shipping rate tables in My eBay, the seller will continue to use the DomesticRateTable and InternationalRateTable tags and pass in Default as the value. Once the seller's account is updated with the new shipping rate tables in My eBay, the seller will be required to use the new DomesticRateTableId and InternationalRateTableId tags, and the DomesticRateTable and InternationalRateTable tags will not work. Note that shipping rate tables can also be applied to Shipping business policies that are applied against a listing. The new shipping rate tables have all of the functionality of the old shipping rate tables, plus the seller has access to all domestic regions and not just the special regions (such as Alaska & Hawaii, US Protectorates, and APO/FPO locations in US).
Max length: 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping rate tables for more information on using shipping rate tables..

Item.ShippingDetails
  .RateTableDetails
  .InternationalRateTableId
string Conditionally Note: This field is only available to sellers on the US, Australia, Canada (English and French), Italy, UK, and Germany sites. The unique shipping rate identifiers that will be passed into this field can be retrieved using the getRateTables call of the Account API, or these identifiers can be viewed in the displayed URL when the seller selects a specific shipping rate table in the Shipping rate tables UI in My eBay.
This field is included in an Add/Revise/Relist/Verify call if the seller wants to apply a customized international shipping rate table to the listing. The string value that is supplied in this field is the unique identifier of the shipping rate table. If the InternationalRateTableId field is used, the seller must make sure that the DomesticRateTable and InternationalRateTable fields are not used, as the old and new rate tables cannot be used together or an error will occur.

In international shipping rate tables, sellers customize the flat-rate cost of shipping based on shipping destination (continent/region/country) and shipping service level (expedited, standard, economy in US). In addition to setting one flat rate based on the destination and service level, the seller also has the option of adding an extra charge based on the weight of the shipping package. Unlike domestic shipping, sellers cannot add a surcharge for international shipping.

If the seller is using the Revise or Relist call, they must include the InternationalRateTableId field or the international shipping rate table currently being applied to the listing will be unassociated from the listing. If they want to continue using the same international shipping rate table, the seller will pass in this identifier. The seller can also change the international shipping rate table by passing in the identifier for a different international shipping rate table.

If a seller is revising or relisting an item, the domestic shipping rate table can be unassociated from the listing by using the empty tag: <InternationalRateTableId />

This field is returned in the 'Get' calls if a customized international rate table is being applied to the listing, and it is only returned for the seller who listed the item.

Note: The capability to create and use multiple domestic and international shipping rate tables (up to 40 per seller account) has rolled out to the US, Australia, Canada (English and French), Italy, UK, and Germany sites. For other sites, only one domestic and one international shipping rate table may be set up per seller. Until the seller's account is updated with the new shipping rate tables in My eBay, the seller will continue to use the DomesticRateTable and InternationalRateTable tags and pass in Default as the value. Once the seller's account is updated with the new shipping rate tables in My eBay, the seller will be required to use the new DomesticRateTableId and InternationalRateTableId tags, and the DomesticRateTable and InternationalRateTable tags will not work. Note that shipping rate tables can also be applied to Shipping business policies that are applied against a listing. The new shipping rate tables have all of the functionality of the old shipping rate tables, plus the seller has access to all domestic regions and not just the special regions (such as Alaska & Hawaii, US Protectorates, and APO/FPO locations in US).
Max length: 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails.SalesTax SalesTaxType Conditionally This container shows sales tax information for an item in a specific tax jurisdiction. The concept of 'sales tax' is only applicable to eBay US and Canada (English and French) sites.

This container can be used in an Add/Revise/Relist/Verify call to set sales tax settings for a specific tax jurisdiction, but it is actually a better practice if a user sets up sales tax rates through the Sales Tax Table tool in My eBay (or by using the SetTaxTable call). A seller's Sales Tax Table is applied to the listing by including the UseTaxTable field in the request and setting its value to true. The GetTaxTable call can be used to retrieve the current sales tax rates for different tax jurisdictions.

This container is only returned in order management 'Get' calls if sales tax is applicable to the order line item. For eBay Collect and Remit states, the sales tax information is displayed in the Transaction.Taxes container instead.

Note: Buyers in all 50 US states and DC are automatically charged sales tax for eBay purchases, and eBay collects and remits this sales tax to the proper taxing authority on the buyer's behalf. Because of this, if a sales tax percentage rate is applied to a listing by a seller in one of these states, this field will be ignored during the checkout process.

Currently, sales tax percentage rates can only be specified by sellers in Canada and 5 US territories, including American Samoa (AS), Guam (GU), Northern Mariana Islands (MP), Palau (PW), and Virgin Islands (VI).


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Multi-jurisdiction sales tax.

Item.ShippingDetails.SalesTax
  .SalesTaxPercent
float Conditionally This float value is the sales tax percentage rate applicable to the corresponding tax jurisdiction (US state or Canadian province). Sellers are responsible for providing accurate sales tax rates for each jurisdiction. This sales tax rate comes into play when a buyer from that tax jurisdiction makes a purchase from the seller. The value passed in is stored with a precision of 3 digits after the decimal point (##.###).

This field is only returned in order management calls if sales tax applies to the order line item, and is only in GetItem (and other 'Get' calls) if sales tax is applicable to the listing or order line item, and the seller is the person making the call.

Although this field will be returned at the order level in order management calls for a single line item order, sales tax is applied at the line item level and not order level. For multiple line item orders, this field will not be returned at all at the order level.

Note: Buyers in all 50 US states and DC are automatically charged sales tax for eBay purchases, and eBay collects and remits this sales tax to the proper taxing authority on the buyer's behalf. Because of this, if a sales tax percentage rate is applied to a listing by a seller in one of these states, this field will be ignored during the checkout process.

Currently, sales tax percentage rates can only be specified by sellers in Canada and 5 US territories, including American Samoa (AS), Guam (GU), Northern Mariana Islands (MP), Palau (PW), and Virgin Islands (VI).


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails.SalesTax
  .SalesTaxState
string Conditionally This is the unique, two-digit identifier of the tax jurisdiction (such as 'CA' for California). To retrieve all two-digit identifiers for all states/territories/provinces for a site, a seller can either use a GetTaxTable call with DetailLevel set to ReturnAll, or they can use the GeteBayDetails call with DetailLevel name set to TaxJurisdiction. Please note that both GetTaxTable and GeteBayDetails calls use a JurisdictionID field to express these tax jurisdiction identifiers instead of SalesTaxState, but the values used in these fields are the same.

The SalesTaxState field is conditionally required in an Add/Revise/Relist/Verify call if the seller is applying sales tax to a listing for a particular jurisdiction, and is returned with each SalesTax container to identify the tax jurisdiction.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails.SalesTax
  .ShippingIncludedInTax
boolean Conditionally This field is included in an Add/Revise/Relist/Verify call and set to true if the seller wants sales tax for the jurisdiction to apply to the cumulative amount of item cost and shipping charges. This value defaults to false if not specified.

This field is always returned with the SalesTax container (whether true or false).

Note: Buyers in all 50 US states and DC are automatically charged sales tax for eBay purchases, and eBay collects and remits this sales tax to the proper taxing authority on the buyer's behalf. Because of this, if a sales tax percentage rate is applied to a listing by a seller in one of these states, this field will be ignored during the checkout process.

Currently, sales tax percentage rates can only be specified by sellers in Canada and 5 US territories, including American Samoa (AS), Guam (GU), Northern Mariana Islands (MP), Palau (PW), and Virgin Islands (VI).


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .SellerExcludeShipToLocationsPreference
boolean Conditionally Sellers can set up a global Exclude Ship-To List through their My eBay account. The Exclude Ship-To List defines the countries to where the seller does not ship, by default.

This flag returns true if the Exclude Ship-To List is enabled by the seller for the associated item. If false, the seller's Exclude Ship-To List is either not set up, or it has been overridden by the seller when they listed the item with ExcludeShipToLocation fields.

In the response, ExcludeShipToLocation fields detail the locations to where the seller will not ship the item, regardless of the value returned in this field.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .ShippingDiscountProfileID
string Conditionally On input, this is the ID of the shipping discount to offer for the domestic shipping services (where the shipping discount is either of type FlatShippingDiscount or CalculatedShippingDiscount).

On output, this is the ID of the shipping discount offered and corresponds to whichever is returned: FlatShippingDiscount or CalculatedShippingDiscount. Only returned if the calling user is the seller.

If the user created a shipping discount profile, use the ShippingDiscountProfileID.

In the RelistItem and ReviseItem family of calls, you can remove the existing ShippingDiscountProfileID associated with the item by supplying a value of 0 (zero).

Only returned if the calling user is the seller.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Shipping discount profiles.

Item.ShippingDetails
  .ShippingServiceOptions
ShippingServiceOptionsType Always,
repeatable: [1..*]
This container is used to provide details on a specific domestic shipping service option, including the unique identifier of the shipping service option and the costs related to domestic shipping service. A separate ShippingServiceOptions container is needed for each domestic shipping service option that is available to ship the item. Unless a fulfillment business policy is being used, generally at least one ShippingServiceOptions container will be required.

If you specify multiple ShippingServiceOptions nodes, the repeating nodes must be contiguous. For example, you can insert InternationalShippingServiceOption nodes after a list of repeating ShippingServiceOptions nodes, but not between them:

<ShippingServiceOptions>...</ShippingServiceOptions>
<ShippingServiceOptions>...</ShippingServiceOptions>
<ShippingServiceOptions>...</ShippingServiceOptions>
<InternationalShippingServiceOption>...</InternationalShippingServiceOption>
<InternationalShippingServiceOption>...</InternationalShippingServiceOption>


If you specify ShippingDetails when you revise or relist an item but you omit ShippingServiceOptions, eBay will drop the domestic shipping services from the listing. This may also have unintended side effects, as other fields that depend on this data may be dropped as well.

To retain the shipping services and dependent fields when you modify other shipping details, it may be simplest to specify all ShippingDetails that you still want to include in the listing.

A seller can offer up to four domestic shipping services and up to five international shipping services. However, if the seller is opted in to the Global Shipping Program or eBay International Shipping, only four other international shipping services may be offered (regardless of whether or not Global Shipping shipment or eBay International Shipping is offered for the listing). All specified domestic and international shipping services must be the same shipping type (for example, Flat versus Calculated).

Note: If the seller has set the shipping cost model to 'Flat' or 'Calculated' (ShippingDetails.ShippingType field), at least one actual shipping service option must be specified through a ShippingServiceOptions container. In the past, eBay allowed users to set the shipping cost model to 'Flat' or 'Calculated', and then just pass in one ShippingServiceOptions container with the ShippingServiceOptions.ShipppingService value set to a 'Local Pickup' option. Now, sellers must pass in at least one actual domestic shipping service option in addition to any 'Local Pickup' option, or the listing will be blocked with the following error: 17510 - You must specify at least one domestic shipping service, other than or in addition to Local Pickup.
For GetItemShipping, results are filtered: if any service is not available in the buyer's region, it is removed. If no services remain after this filtering, a warning is returned.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Repeating (unbounded) fields for rules regarding repeating instances of a nodes (nodes for which maxOccurs is "unbounded" or is greater than 1).

Item.ShippingDetails
  .ShippingServiceOptions
  .ExpeditedService
boolean Conditionally This field is returned as true if the domestic shipping service is considered an expedited shipping service. An expedited service is typically a shipping service that can ship an order that will arrive at the buyer's location within one to two business days.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .ShippingServiceOptions
  .FreeShipping
boolean Conditionally This boolean field indicates whether or not the corresponding domestic shipping service option is free to the buyer. In an Add/Revise/Relist call, free shipping can only be offered for the first specified shipping service (so, the corresponding ShippingServicePriority value should be 1 or included first in the call request). If 'free shipping' is for any other shipping service, this field is ignored.

For 'Get' calls, including GetItem, this field is only returned if 1.
Note: If a seller is specifying a shipping service option as 'free shipping', in addition to this FreeShipping boolean field, the seller will also need to include the corresponding ShippingServiceCost field and set its value to 0.0, as eBay will not do this automatically. Note: If the condition is certified refurbished (ConditionID set to 2000, 'Certified - Refurbished'), you must offer a free shipping option. Set FreeShipping as true (or 1) along with the ShippingServiceCost as 0.0 for the first domestic shipping service.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Free shipping.

Item.ShippingDetails
  .ShippingServiceOptions
  .ShippingService
token Conditionally This enumeration value indicates a specific domestic shipping service option being offered by the seller to ship an item to a buyer who is located within the same country as the item. This field is required to identify each domestic shipping service option that is specified with a ShippingServiceOptions container.

For a list of valid ShippingService values, call GeteBayDetails with DetailName set to ShippingServiceDetails. The ShippingServiceDetails.ValidForSellingFlow flag must also be present. Otherwise, that particular shipping service option is no longer valid and cannot be offered to buyers through a listing.

To view the full list of domestic shipping service options in the response, look for the ShippingServiceDetails.ShippingService fields. Domestic shipping service options will not have a InternationalService = true field, as this indicates that the ShippingService value is an International shipping service option.

Note: The eBay standard envelope (eSE) is a domestic envelope service with tracking through eBay. This service applies to specific sub-categories of Trading Cards, and to coins & paper money, postcards, stamps, patches, and similar eligible categories, and is only available on the US marketplace. See eBay standard envelope for details, restrictions, and an envelope size template. To use this service, send envelopes using the USPS mail and set the ShippingService field to US_eBayStandardEnvelope.

For the REST equivalent, see Using the eBay standard envelope (eSE) service.


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See GeteBayDetails.



Applicable values: See ShippingServiceCodeType
Item.ShippingDetails
  .ShippingServiceOptions
  .ShippingServiceAdditionalCost
AmountType (double) Conditionally The cost of shipping each additional item if the same buyer purchases multiple quantity of the same line item. This field is required when creating a multiple-quantity, fixed-price listing. Generally, the seller will give the buyer a shipping discount if that buyer purchases multiple quantity of the item, so this value should usually be less than the value set for ShippingServiceCost.

The value of this field can even be set to 0 if the seller wants to encourage buyers to buy multiple quantity of the item, or it could be that the seller can fit multiple quantities of the line item in a single shipping package, so the seller is just passing this shipping savings onto the buyer. This field is not applicable for single-quantity listings.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .ShippingServiceOptions
  .ShippingServiceAdditionalCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally The cost of shipping each additional item if the same buyer purchases multiple quantity of the same line item. This field is required when creating a multiple-quantity, fixed-price listing. Generally, the seller will give the buyer a shipping discount if that buyer purchases multiple quantity of the item, so this value should usually be less than the value set for ShippingServiceCost.

The value of this field can even be set to 0 if the seller wants to encourage buyers to buy multiple quantity of the item, or it could be that the seller can fit multiple quantities of the line item in a single shipping package, so the seller is just passing this shipping savings onto the buyer. This field is not applicable for single-quantity listings.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .ShippingServiceOptions
  .ShippingServiceCost
AmountType (double) Conditionally The base cost of shipping one unit of the item using the shipping service specified in the corresponding ShippingService field.

In the case of a multiple-quantity, fixed-price listing, the ShippingServiceAdditionalCost field also becomes applicable, and shows the cost to ship each additional unit of the item if the buyer purchases multiple quantity of the same line item.

Note: If the corresponding shipping service option is set as a 'free shipping' option (FreeShipping=true), the seller still needs to include this ShippingServiceCost field and set its value to 0.0, as eBay will not do this automatically. When returned by GetItemShipping, it includes the packaging and handling cost.

Note that if ShippingService is set to LocalPickup, ShippingServiceCost must be set to 0.0. Also, if a shipping service has been specified (even LocalPickup), GetItem returns the shipping service cost, even if the cost is zero.

If this is for calculated shipping for a listing that has not yet ended, note that the cost cannot be determined until the listing has ended and the buyer has specified a postal code.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .ShippingServiceOptions
  .ShippingServiceCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally The base cost of shipping one unit of the item using the shipping service specified in the corresponding ShippingService field.

In the case of a multiple-quantity, fixed-price listing, the ShippingServiceAdditionalCost field also becomes applicable, and shows the cost to ship each additional unit of the item if the buyer purchases multiple quantity of the same line item.

Note: If the corresponding shipping service option is set as a 'free shipping' option (FreeShipping=true), the seller still needs to include this ShippingServiceCost field and set its value to 0.0, as eBay will not do this automatically. When returned by GetItemShipping, it includes the packaging and handling cost.

Note that if ShippingService is set to LocalPickup, ShippingServiceCost must be set to 0.0. Also, if a shipping service has been specified (even LocalPickup), GetItem returns the shipping service cost, even if the cost is zero.

If this is for calculated shipping for a listing that has not yet ended, note that the cost cannot be determined until the listing has ended and the buyer has specified a postal code.

For a list of possible enumeration values, see CurrencyCodeType.
Item.ShippingDetails
  .ShippingServiceOptions
  .ShippingServicePriority
int Conditionally Controls the order (relative to other shipping services) in which the corresponding ShippingService will appear in the View Item and Checkout page.

Sellers can specify up to four domestic shipping services (with four ShippingServiceOptions containers), so valid values are 1, 2, 3, and 4. A shipping service with a ShippingServicePriority value of 1 appears at the top. Conversely, a shipping service with a ShippingServicePriority value of 4 appears at the bottom of a list of four shipping service options.

If this field is omitted from domestic shipping service options, the order of the shipping service options in View Item and Checkout pages will be determined by the order that these shipping service options are presented in the request payload of an Add/Revise/Relist call.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .ShippingServiceOptions
  .ShippingTimeMax
int Conditionally The integer value returned here indicates the maximum number of business days that the shipping service (indicated in the corresponding ShippingService field) will take to be delivered to the buyer.

This maximum shipping time does not include the seller's handling time, and the clock starts on the shipping time only after the seller has delivered the item to the shipping carrier for shipment to the buyer. 'Business days' can vary by shipping carrier and by country, but 'business days' are generally Monday through Friday, excluding holidays. This field is returned if defined for that particular shipping service option.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .ShippingServiceOptions
  .ShippingTimeMin
int Conditionally The integer value returned here indicates the minimum number of business days that the shipping service (indicated in the corresponding ShippingService field) will take to be delivered to the buyer.

This minimum shipping time does not include the seller's handling time, and the clock starts on the shipping time only after the seller has delivered the item to the shipping carrier for shipment to the buyer. 'Business days' can vary by shipping carrier and by country, but 'business days' are generally Monday through Friday, excluding holidays. This field is returned if defined for that particular shipping service option.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .ShippingType
ShippingTypeCodeType Conditionally The shipping cost model offered by the seller. This is not returned for various calls since shipping type can be deduced: if a CalculatedShippingRate structure is returned by the call, the shipping type is Calculated. Otherwise, it is one of the other non-Calculated shipping types.

GetItemShipping and GetItemTransactions: If the type was a mix of flat and calculated services, this is set simply to Flat or Calculated because it is the buyer's selection that results in one of these.

GetMyeBayBuying: If the seller has set the ShipToLocation to Worldwide for an item, but has not specified any international shipping service options, NotSpecified is returned as the ShippingType value.

Applicable values: See ShippingType.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails.TaxTable TaxTableType Conditionally Tax details for a jurisdiction, such as a state or province. If no tax table is associated with the item, a tax table is not returned.

For GetItem, a tax table is returned if it exists when:
  • DetailLevel is set to ReturnAll or ItemReturnDescription (in this case, the value of IncludeTaxTable does not matter)
  • IncludeTaxTable is set to true and DetailLevel is not set or it is set to ItemReturnAttributes


DetailLevel: ItemReturnDescription, ReturnAll.
Item.ShippingDetails.TaxTable
  .TaxJurisdiction
TaxJurisdictionType Conditionally,
repeatable: [0..*]
In a SetTaxTable, a TaxJurisdiction container is required for each tax jurisdiction that the seller wishes to make additions/changes. Sales tax details for zero or more jurisdictions (states, provinces, etc). This can be just one jurisdiction, up to all jurisdictions defined for the site's country. Any values specified through a TaxJurisdiction container will override any existing values defined in the seller's Sales Tax Table.

If GetTaxTable is called without the DetailLevel field, only tax jurisdictions where sales tax rates have been set up are returned. However, if the DetailLevel field is included in the request and set to ReturnAll, all tax jurisdictions are returned, regardless of whether or not the seller has modified settings for any/all of these jurisdictions.

This container is only returned in order-related 'Get' calls if sales tax is applicable to the order line item.

Note: Buyers in all 50 US states and DC are automatically charged sales tax for eBay purchases, and eBay collects and remits this sales tax to the proper taxing authority on the buyer's behalf. Because of this, if a sales tax percentage rate is applied to a listing by a seller in one of these states, this field will be ignored during the checkout process.

Currently, sales tax percentage rates can only be specified by sellers in Canada and 5 US territories, including American Samoa (AS), Guam (GU), Northern Mariana Islands (MP), Palau (PW), and Virgin Islands (VI).


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails.TaxTable
  .TaxJurisdiction
  .JurisdictionID
string Conditionally This is the unique, two-digit identifier of the tax jurisdiction (such as 'CA' for California). To retrieve all JurisdictionID values for a site, a seller can either use a GetTaxTable call with DetailLevel set to ReturnAll, or they can use the GeteBayDetails call with DetailLevel name set to TaxJurisdiction.

The JurisdictionID field is always required in a SetTaxTable call, and always returned with each TaxJurisdiction container to identify the tax jurisdiction.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails.TaxTable
  .TaxJurisdiction
  .SalesTaxPercent
float Conditionally This float value is the sales tax percentage rate applicable to the corresponding tax jurisdiction. Sellers are responsible for providing accurate sales tax rates for each jurisdiction. This sales tax rate comes into play when a buyer from that tax jurisdiction makes a purchase from the seller. The value passed in is stored with a precision of 3 digits after the decimal point (##.###).

This field is only returned in GetTaxTable (and other 'Get' calls) if a sales tax percentage rate has been set.

Note: Buyers in all 50 US states and DC are automatically charged sales tax for eBay purchases, and eBay collects and remits this sales tax to the proper taxing authority on the buyer's behalf. Because of this, if a sales tax percentage rate is applied to a listing by a seller in one of these states, this field will be ignored during the checkout process.

Currently, sales tax percentage rates can only be specified by sellers in Canada and 5 US territories, including American Samoa (AS), Guam (GU), Northern Mariana Islands (MP), Palau (PW), and Virgin Islands (VI).


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails.TaxTable
  .TaxJurisdiction
  .ShippingIncludedInTax
boolean Conditionally This field is included in a SetTaxTable call and set to true if the seller wants sales tax for the jurisdiction to apply to the cumulative amount of item cost and shipping charges. This value defaults to false if not specified.

This field is always returned with each TaxJurisdiction container (whether true or false).

Note: Buyers in all 50 US states and DC are automatically charged sales tax for eBay purchases, and eBay collects and remits this sales tax to the proper taxing authority on the buyer's behalf. Because of this, if a sales tax percentage rate is applied to a listing by a seller in one of these states, this field will be ignored during the checkout process.

Currently, sales tax percentage rates can only be specified by sellers in Canada and 5 US territories, including American Samoa (AS), Guam (GU), Northern Mariana Islands (MP), Palau (PW), and Virgin Islands (VI).


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingDetails
  .ThirdPartyCheckout
boolean Always
Note: This field is deprecated and will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingPackageDetails ShipPackageDetailsType Conditionally Container consisting of dimension and size details related to a shipping package in which an item will be sent. The information in this container is applicable if the seller is using calculated shipping or flat rate shipping using shipping rate tables with weight surcharges. This container is only returned in the Get calls if specified for the item.
Item.ShippingPackageDetails
  .PackageDepth
MeasureType (decimal) Conditionally Depth of the package, in whole number of inches, needed to ship the item. This is validated against the selected shipping service. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)

Developer impact: UPS requires dimensions for any Ground packages that are 3 cubic feet or larger and for all air packages, if they are to provide correct shipping cost. If package dimensions are not included for an item listed with calculated shipping, the shipping cost returned will be an estimate based on standard dimensions for the defined package type. eBay enforces a dimensions requirement on listings so that buyers receive accurate calculated shipping costs.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Package dimensions and weight.

Item.ShippingPackageDetails
  .PackageDepth
  [ attribute unit ]
token Conditionally Depth of the package, in whole number of inches, needed to ship the item. This is validated against the selected shipping service. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)

Developer impact: UPS requires dimensions for any Ground packages that are 3 cubic feet or larger and for all air packages, if they are to provide correct shipping cost. If package dimensions are not included for an item listed with calculated shipping, the shipping cost returned will be an estimate based on standard dimensions for the defined package type. eBay enforces a dimensions requirement on listings so that buyers receive accurate calculated shipping costs.
Item.ShippingPackageDetails
  .PackageDepth
  [ attribute measurementSystem ]
MeasurementSystemCodeType Conditionally Depth of the package, in whole number of inches, needed to ship the item. This is validated against the selected shipping service. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)

Developer impact: UPS requires dimensions for any Ground packages that are 3 cubic feet or larger and for all air packages, if they are to provide correct shipping cost. If package dimensions are not included for an item listed with calculated shipping, the shipping cost returned will be an estimate based on standard dimensions for the defined package type. eBay enforces a dimensions requirement on listings so that buyers receive accurate calculated shipping costs.

For a list of possible enumeration values, see MeasurementSystemCodeType.
Item.ShippingPackageDetails
  .PackageLength
MeasureType (decimal) Conditionally Length of the package, in whole number of inches, needed to ship the item. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Package dimensions and weight.

Item.ShippingPackageDetails
  .PackageLength
  [ attribute unit ]
token Conditionally Length of the package, in whole number of inches, needed to ship the item. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)
Item.ShippingPackageDetails
  .PackageLength
  [ attribute measurementSystem ]
MeasurementSystemCodeType Conditionally Length of the package, in whole number of inches, needed to ship the item. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)

For a list of possible enumeration values, see MeasurementSystemCodeType.
Item.ShippingPackageDetails
  .PackageWidth
MeasureType (decimal) Conditionally Width of the package, in whole number of inches, needed to ship the item. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Package dimensions and weight.

Item.ShippingPackageDetails
  .PackageWidth
  [ attribute unit ]
token Conditionally Width of the package, in whole number of inches, needed to ship the item. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)
Item.ShippingPackageDetails
  .PackageWidth
  [ attribute measurementSystem ]
MeasurementSystemCodeType Conditionally Width of the package, in whole number of inches, needed to ship the item. Upon mismatch, a message is returned, such as, "Package dimensions exceeds maximum allowable limit for service XXXXX," where XXXXX is the name of the shipping service. For calculated shipping only. Only returned if the seller specified the value for the item. (In many cases, the seller only specifies the weight fields.)

For a list of possible enumeration values, see MeasurementSystemCodeType.
Item.ShippingPackageDetails
  .ShippingIrregular
boolean Conditionally Whether a package is irregular and therefore cannot go through the stamping machine at the shipping service office and thus requires special or fragile handling. For calculated shipping only.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingPackageDetails
  .ShippingPackage
ShippingPackageCodeType Conditionally The nature of the package used to ship the item(s). Required for calculated shipping only.

Applicable values: See ShippingPackage.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingPackageDetails
  .WeightMajor
MeasureType (decimal) Conditionally WeightMajor and WeightMinor are used to specify the weight of a shipping package. WeightMajor is used to specify the weight of the package in pounds (in US) or kilograms (all countries that use metric system). Although MeasureType is of decimal type, decimal values should not be used in WeightMajor and WeightMinor. If a shipping package was 5 pounds and 1.8 ounces, the 1.8 ounces should be rounded up to an even 2 ounces. The same is for kilograms. If the package is 2.267 kilgram, you would round up the grams. Below shows you how to represent a package weight of 5 lbs 2 oz and and 2 kg 3 gr:

<WeightMajor unit="lbs">5</WeightMajor>
<WeightMinor unit="oz">2</WeightMinor>
<WeightMajor unit="kg">2</WeightMajor>
<WeightMinor unit="gr">3</WeightMinor>


If a package weighed 14 oz or 324 gr, below is how you would represent this weight:

<WeightMajor unit="lbs">0</WeightMajor>
<WeightMinor unit="oz">14</WeightMinor>
<WeightMajor unit="kg">0</WeightMajor>
<WeightMinor unit="gr">324</WeightMinor>


If a package weighed exactly 2 lbs or 105 kg, below is how you would represent this weight:

<WeightMajor unit="lbs">2</WeightMajor>
<WeightMinor unit="oz">0</WeightMinor>
<WeightMajor unit="kg">105</WeightMajor>
<WeightMinor unit="gr">0</WeightMinor>


In all cases, both the WeightMajor and WeightMinor should be specified in an Add/Revise/Relist/Verify call, even if either's value is '0'.

The WeightMajor and WeightMinor are applicable for calculated shipping or for flat-rate shipping if shipping rate tables are specified and the shipping rate table uses weight surcharges.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingPackageDetails
  .WeightMajor
  [ attribute unit ]
token Conditionally WeightMajor and WeightMinor are used to specify the weight of a shipping package. WeightMajor is used to specify the weight of the package in pounds (in US) or kilograms (all countries that use metric system). Although MeasureType is of decimal type, decimal values should not be used in WeightMajor and WeightMinor. If a shipping package was 5 pounds and 1.8 ounces, the 1.8 ounces should be rounded up to an even 2 ounces. The same is for kilograms. If the package is 2.267 kilgram, you would round up the grams. Below shows you how to represent a package weight of 5 lbs 2 oz and and 2 kg 3 gr:

<WeightMajor unit="lbs">5</WeightMajor>
<WeightMinor unit="oz">2</WeightMinor>
<WeightMajor unit="kg">2</WeightMajor>
<WeightMinor unit="gr">3</WeightMinor>


If a package weighed 14 oz or 324 gr, below is how you would represent this weight:

<WeightMajor unit="lbs">0</WeightMajor>
<WeightMinor unit="oz">14</WeightMinor>
<WeightMajor unit="kg">0</WeightMajor>
<WeightMinor unit="gr">324</WeightMinor>


If a package weighed exactly 2 lbs or 105 kg, below is how you would represent this weight:

<WeightMajor unit="lbs">2</WeightMajor>
<WeightMinor unit="oz">0</WeightMinor>
<WeightMajor unit="kg">105</WeightMajor>
<WeightMinor unit="gr">0</WeightMinor>


In all cases, both the WeightMajor and WeightMinor should be specified in an Add/Revise/Relist/Verify call, even if either's value is '0'.

The WeightMajor and WeightMinor are applicable for calculated shipping or for flat-rate shipping if shipping rate tables are specified and the shipping rate table uses weight surcharges.
Item.ShippingPackageDetails
  .WeightMajor
  [ attribute measurementSystem ]
MeasurementSystemCodeType Conditionally WeightMajor and WeightMinor are used to specify the weight of a shipping package. WeightMajor is used to specify the weight of the package in pounds (in US) or kilograms (all countries that use metric system). Although MeasureType is of decimal type, decimal values should not be used in WeightMajor and WeightMinor. If a shipping package was 5 pounds and 1.8 ounces, the 1.8 ounces should be rounded up to an even 2 ounces. The same is for kilograms. If the package is 2.267 kilgram, you would round up the grams. Below shows you how to represent a package weight of 5 lbs 2 oz and and 2 kg 3 gr:

<WeightMajor unit="lbs">5</WeightMajor>
<WeightMinor unit="oz">2</WeightMinor>
<WeightMajor unit="kg">2</WeightMajor>
<WeightMinor unit="gr">3</WeightMinor>


If a package weighed 14 oz or 324 gr, below is how you would represent this weight:

<WeightMajor unit="lbs">0</WeightMajor>
<WeightMinor unit="oz">14</WeightMinor>
<WeightMajor unit="kg">0</WeightMajor>
<WeightMinor unit="gr">324</WeightMinor>


If a package weighed exactly 2 lbs or 105 kg, below is how you would represent this weight:

<WeightMajor unit="lbs">2</WeightMajor>
<WeightMinor unit="oz">0</WeightMinor>
<WeightMajor unit="kg">105</WeightMajor>
<WeightMinor unit="gr">0</WeightMinor>


In all cases, both the WeightMajor and WeightMinor should be specified in an Add/Revise/Relist/Verify call, even if either's value is '0'.

The WeightMajor and WeightMinor are applicable for calculated shipping or for flat-rate shipping if shipping rate tables are specified and the shipping rate table uses weight surcharges.

For a list of possible enumeration values, see MeasurementSystemCodeType.
Item.ShippingPackageDetails
  .WeightMinor
MeasureType (decimal) Conditionally WeightMajor and WeightMinor are used to specify the weight of a shipping package. WeightMinor is used to specify the weight of the package in ounces (in US) or grams (all countries that use metric system). Although MeasureType is of decimal type, decimal values should not be used in WeightMajor and WeightMinor. If a shipping package was 5 pounds and 1.8 ounces, the 1.8 ounces should be rounded up to an even 2 ounces. The same is for kilograms. If the package is 2.267 kilgram, you would round up the grams. Below shows you how to represent a package weight of 5 lbs 2 oz and and 2 kg 3 gr:

<WeightMajor unit="lbs">5</WeightMajor>
<WeightMinor unit="oz">2</WeightMinor>
<WeightMajor unit="kg">2</WeightMajor>
<WeightMinor unit="gr">3</WeightMinor>


If a package weighed 14 oz or 324 gr, below is how you would represent this weight:

<WeightMajor unit="lbs">0</WeightMajor>
<WeightMinor unit="oz">14</WeightMinor>
<WeightMajor unit="kg">0</WeightMajor>
<WeightMinor unit="gr">324</WeightMinor>


If a package weighed exactly 2 lbs or 105 kg, below is how you would represent this weight:

<WeightMajor unit="lbs">2</WeightMajor>
<WeightMinor unit="oz">0</WeightMinor>
<WeightMajor unit="kg">105</WeightMajor>
<WeightMinor unit="gr">0</WeightMinor>


In all cases, both the WeightMajor and WeightMinor should be specified in an Add/Revise/Relist/Verify call, even if either's value is '0'.

The WeightMajor and WeightMinor are applicable for calculated shipping or for flat-rate shipping if shipping rate tables are specified and the shipping rate table uses weight surcharges.


Min: 0. Max: 15 for ounces; 999 for grams.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.ShippingPackageDetails
  .WeightMinor
  [ attribute unit ]
token Conditionally WeightMajor and WeightMinor are used to specify the weight of a shipping package. WeightMinor is used to specify the weight of the package in ounces (in US) or grams (all countries that use metric system). Although MeasureType is of decimal type, decimal values should not be used in WeightMajor and WeightMinor. If a shipping package was 5 pounds and 1.8 ounces, the 1.8 ounces should be rounded up to an even 2 ounces. The same is for kilograms. If the package is 2.267 kilgram, you would round up the grams. Below shows you how to represent a package weight of 5 lbs 2 oz and and 2 kg 3 gr:

<WeightMajor unit="lbs">5</WeightMajor>
<WeightMinor unit="oz">2</WeightMinor>
<WeightMajor unit="kg">2</WeightMajor>
<WeightMinor unit="gr">3</WeightMinor>


If a package weighed 14 oz or 324 gr, below is how you would represent this weight:

<WeightMajor unit="lbs">0</WeightMajor>
<WeightMinor unit="oz">14</WeightMinor>
<WeightMajor unit="kg">0</WeightMajor>
<WeightMinor unit="gr">324</WeightMinor>


If a package weighed exactly 2 lbs or 105 kg, below is how you would represent this weight:

<WeightMajor unit="lbs">2</WeightMajor>
<WeightMinor unit="oz">0</WeightMinor>
<WeightMajor unit="kg">105</WeightMajor>
<WeightMinor unit="gr">0</WeightMinor>


In all cases, both the WeightMajor and WeightMinor should be specified in an Add/Revise/Relist/Verify call, even if either's value is '0'.

The WeightMajor and WeightMinor are applicable for calculated shipping or for flat-rate shipping if shipping rate tables are specified and the shipping rate table uses weight surcharges.

Item.ShippingPackageDetails
  .WeightMinor
  [ attribute measurementSystem ]
MeasurementSystemCodeType Conditionally WeightMajor and WeightMinor are used to specify the weight of a shipping package. WeightMinor is used to specify the weight of the package in ounces (in US) or grams (all countries that use metric system). Although MeasureType is of decimal type, decimal values should not be used in WeightMajor and WeightMinor. If a shipping package was 5 pounds and 1.8 ounces, the 1.8 ounces should be rounded up to an even 2 ounces. The same is for kilograms. If the package is 2.267 kilgram, you would round up the grams. Below shows you how to represent a package weight of 5 lbs 2 oz and and 2 kg 3 gr:

<WeightMajor unit="lbs">5</WeightMajor>
<WeightMinor unit="oz">2</WeightMinor>
<WeightMajor unit="kg">2</WeightMajor>
<WeightMinor unit="gr">3</WeightMinor>


If a package weighed 14 oz or 324 gr, below is how you would represent this weight:

<WeightMajor unit="lbs">0</WeightMajor>
<WeightMinor unit="oz">14</WeightMinor>
<WeightMajor unit="kg">0</WeightMajor>
<WeightMinor unit="gr">324</WeightMinor>


If a package weighed exactly 2 lbs or 105 kg, below is how you would represent this weight:

<WeightMajor unit="lbs">2</WeightMajor>
<WeightMinor unit="oz">0</WeightMinor>
<WeightMajor unit="kg">105</WeightMajor>
<WeightMinor unit="gr">0</WeightMinor>


In all cases, both the WeightMajor and WeightMinor should be specified in an Add/Revise/Relist/Verify call, even if either's value is '0'.

The WeightMajor and WeightMinor are applicable for calculated shipping or for flat-rate shipping if shipping rate tables are specified and the shipping rate table uses weight surcharges.



For a list of possible enumeration values, see MeasurementSystemCodeType.
Item
  .ShippingServiceCostOverrideList
ShippingServiceCostOverrideListType Conditionally This container is used when the seller wants to override the flat shipping costs for all domestic and/or all international shipping services defined in the shipping business policy referenced in the SellerProfiles.SellerShippingProfile.ShippingProfileID field. Shipping costs include the cost to ship one item, the cost to ship each additional identical item, and any shipping surcharges applicable to domestic shipping services.

A ShippingServiceCostOverrideList.ShippingServiceCostOverride container is required for each domestic and/or international shipping service that is defined in the domesticShippingPolicyInfoService and intlShippingPolicyInfoService containers of the shipping business policy.
Note: To make sure that the shipping cost override and policies are set correctly on an item (that is using business policies and has one or more shipping service cost overrides set up), the Item.SellerProfiles.SellerShippingProfile container and the Item.ShippingServiceCostOverrideList.ShippingServiceCostOverride container(s) must be included, even if no changes are being made. Shipping service cost overrides are a listing-level concept, and the shipping costs specified through each ShippingServiceCostOverrideList.ShippingServiceCostOverride container will not change the shipping costs defined for the same shipping services in the shipping business policy.

For Revise and Relist calls: To delete all shipping service cost overrides when you revise or relist, specify Item.ShippingServiceCostOverrideList in DeletedField, and don't pass ShippingServiceCostOverrideList in the request.
Item
  .ShippingServiceCostOverrideList
  .ShippingServiceCostOverride
ShippingServiceCostOverrideType Conditionally,
repeatable: [0..*]
A ShippingServiceCostOverride container is required for each domestic and/or international shipping service option, defined in the domesticShippingPolicyInfoService and intlShippingPolicyInfoService containers of the Business Policies shipping profile, that the seller wishes to override the shipping costs. Shipping costs include the cost to ship one item, the cost to ship each additional identical item, and any shipping surcharges applicable to domestic shipping services.

Shipping service cost overrides are a listing-level concept, and the shipping costs specified through each ShippingServiceCostOverride container will not change the shipping costs defined for the same shipping service options in the Business Policies shipping profile.

To override the shipping costs for any domestic shipping service option in the Business Policies shipping profile, the ShippingServiceType field should be set to 'Domestic', and to override the shipping costs for any international shipping service option, the ShippingServiceType field should be set to 'International'. For both domestic and international shipping services, the ShippingServicePriority value should match the sortOrderId value for the matching shipping service in the shipping profile. If any of the domestic and/or international shipping service priorities and shipping service options in the Add/Revise/Relist call and Business Policies shipping profile do not match, an error occurs.

If shipping service cost overrides are used in a listing, the ShippingServiceCostOverride container will be returned in the GetItem, and GetSellerList calls.
Item
  .ShippingServiceCostOverrideList
  .ShippingServiceCostOverride
  .ShippingServiceAdditionalCost
AmountType (double) Conditionally This dollar value indicates the cost to ship each additional identical item to the buyer. If the shipping service costs override operation is successful, this value will override the corresponding shippingServiceAdditionalCost value set in the domesticShippingPolicyInfoService (domestic shipping service) or intlShippingPolicyInfoService (international shipping service) containers in the Business Policies shipping profile.

This field is only applicable to multi-quantity, fixed-price listings.
Item
  .ShippingServiceCostOverrideList
  .ShippingServiceCostOverride
  .ShippingServiceAdditionalCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally This dollar value indicates the cost to ship each additional identical item to the buyer. If the shipping service costs override operation is successful, this value will override the corresponding shippingServiceAdditionalCost value set in the domesticShippingPolicyInfoService (domestic shipping service) or intlShippingPolicyInfoService (international shipping service) containers in the Business Policies shipping profile.

This field is only applicable to multi-quantity, fixed-price listings.

For a list of possible enumeration values, see CurrencyCodeType.
Item
  .ShippingServiceCostOverrideList
  .ShippingServiceCostOverride
  .ShippingServiceCost
AmountType (double) Conditionally This dollar value indicates the shipping service cost to ship one item to the buyer. If the shipping service costs override operation is successful, this value will override the corresponding shippingServiceCost value set in the domesticShippingPolicyInfoService (domestic shipping service) or intlShippingPolicyInfoService (international shipping service) containers in the Business Policies shipping profile.
Item
  .ShippingServiceCostOverrideList
  .ShippingServiceCostOverride
  .ShippingServiceCost
  [ attribute currencyID ]
CurrencyCodeType Conditionally This dollar value indicates the shipping service cost to ship one item to the buyer. If the shipping service costs override operation is successful, this value will override the corresponding shippingServiceCost value set in the domesticShippingPolicyInfoService (domestic shipping service) or intlShippingPolicyInfoService (international shipping service) containers in the Business Policies shipping profile.

For a list of possible enumeration values, see CurrencyCodeType.
Item
  .ShippingServiceCostOverrideList
  .ShippingServiceCostOverride
  .ShippingServicePriority
int Conditionally This integer value maps the particular instance of the ShippingServiceCostOverride container to the domesticShippingPolicyInfoService or intlShippingPolicyInfoService container of the Business Policies shipping profile. The ShippingServicePriority value should match the sortOrderId value for the matching shipping service in the Business Policies shipping profile. If overriding the shipping costs for a domestic shipping service, the ShippingServiceType field should be set to 'Domestic', and to override the shipping costs for an international shipping service, the ShippingServiceType field should be set to 'International'.

If any of the domestic and/or international shipping service priorities and shipping service options in the Add/Revise/Relist call and Business Policies shipping profile do not match, an error occurs.
Item
  .ShippingServiceCostOverrideList
  .ShippingServiceCostOverride
  .ShippingServiceType
ShippingServiceType Conditionally This enumerated value indicates whether the shipping costs of a domestic or an international shipping costs are being overridden. To override the shipping costs for any domestic shipping service in the Business Policies shipping profile, this field should be set to 'Domestic', and to override the shipping costs for any international shipping service, this field should be set to 'International'.

Applicable values:

Domestic
(in/out) This value should be used if the seller is overriding shipping costs for all domestic shipping services defined in the Business Policies shipping profile.
International
(in/out) This value should be used if the seller is overriding shipping costs for all international shipping services defined in the Business Policies shipping profile.

Code so that your app gracefully handles any future changes to this list.
Item.ShipToLocations string Always,
repeatable: [1..*]
An international location or region to which the seller is willing to ship, regardless of shipping service. The country of the listing site is added by eBay.

Note: For sellers who are using a shipping (aka Fulfillment) business policy to create/revise/relist an item, the ShipToLocations field should not be used in the request. A fulfillment business policy can be set up and/or modified in My eBay, or via the Account API. A fulfillment business policy is associated to a listing through the Item.SellerProfiles.SellerShippingProfile container.
Use GeteBayDetails with a DetailName of ShippingLocationDetails to determine which international locations are valid for the site. Omit ShipToLocations if you want to ship only within the country of the listing site. To state that you do not wish to ship at all, set ShipToLocations to None. ReviseItem can add a ShipToLocations. On output, ShipToLocations is the collection of all input item-level ShipToLocations plus international shipping service-level ShipToLocation values.

Note: The ShipToLocations and ShippingDetails.ExcludeShipToLocation containers are not applicable for motor vehicle listings on the US, CA, or UK marketplaces. If these containers are sent in the request, they are ignored and a warning is returned.
If you have specified a region to which you will ship (such as Asia), you can use ExcludeShipToLocation to exclude certain countries within that region to where you will not ship (such as Afghanistan).

Note: To create a listing that is 'Local Pickup only' (buyer picks up, with no shipping/delivery available), the user does the following two things:
  • Either omit the entire ShippingDetails container, or pass in an empty ShippingDetails container - <ShippingDetails/>
  • Pass in one ShipToLocations field, with its value set to None - <ShipToLocations>None</ShipToLocations>


DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Shipping information
    GeteBayDetails



Applicable values: See CountryCodeType, ShippingRegionCodeType
Item.Site SiteCodeType Always The name of the eBay listing site. The listing site affects the business logic and validation rules that are applied to the request, which in turn affect the values that are returned in the response, as well as values that appear on the eBay site. For example, the listing site can affect the validation of Category in listing requests, international business seller requirements, the values of converted (localized) prices in responses, the item-related time stamps that are displayed on the eBay site, the visibility of the item in some types of searches (e.g., GetCategoryListings), and other information. In some cases, the rules are determined by a combination of the site, the user's registration address, and other information. You cannot change the site when you revise a listing.

When you specify Item.Site in AddItem or AddFixedPriceItem, it must be consistent with the numeric site ID that you specify in the request URL (for the SOAP API) or the X-EBAY-API-SITEID header (for the XML API).

Applicable values: See Site.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SKU SKUType (string) Conditionally A SKU (Stock Keeping Unit) value is a seller-defined identifier for a product. Each product within a seller's inventory should be unique. Most large-volume sellers use SKUs, but eBay only requires a SKU value if the InventoryTrackingMethod field is included in an AddFixedPriceItem call and its value is set to SKU. Setting the InventoryTrackingMethod field to SKU allows the seller to use a SKU value instead of an ItemID value as a unique identifier in calls such as GetItem and ReviseInventoryStatus

A seller can specify a SKU when listing an item with AddItem and related calls. eBay preserves the SKU on the item, enabling you to obtain it before and after an order line item is created. (SKU is recommended as an alternative to ApplicationData.)

If both ItemID and SKU are specified in calls that support the use of SKU as a unique identifier, the ItemID value takes precedence.

If a seller wants to use SKUs for multiple-variation listings, the SKU value for each product variation is actually specified at the variation level (Item.Variations.Variation.SKU) field, and the Item.SKU) field should not be included in the call request.

Note: The eBay site cannot identify listings by SKU. For example, My eBay pages and Search pages all identify listings by item ID. When a buyer contacts you via eBay's messaging functionality, eBay uses the item ID as the identifier. Buyer-focused APIs (like the Shopping API) also do not support SKU as an identifier. For revising and relisting only: To remove a SKU when you revise or relist an item, use DeletedField. (You cannot remove a SKU when Item.InventoryTrackingMethod is set to SKU.)

For GetItem, GetMyeBaySelling, and other 'Get' call, the SKU value will only be returned if defined for the listing.

Max length: 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See eBay Merchant Data API for AddFixedPriceItem and ReviseFixedPriceItem.

Item.StartPrice AmountType (double) Always The original price of the item at listing or re-listing time. If this value changes when the item is revised, the new value becomes the original price.

For auction listings: Competitive bidding starts at this value. Once at least one bid has been placed, StartPrice remains the same but CurrentPrice is incremented to the amount of each succeeding bid. If ReservePrice is also specified, the value of StartPrice must be lower than the value of ReservePrice.

For input on fixed-price listings (FixedPriceItem): This is the constant price at which a buyer may purchase the item.

GetMyeBaySelling does not return Item.StartPrice for fixed price items—it returns Item.SellingStatus.CurrentPrice.

For AddFixedPriceItem and VerifyAddFixedPriceItem: Required when no variations are specified. If variations are specified, use Variation.StartPrice for each variation instead.

For Revise calls: If the StartPrice value for a fixed-price item is changed with a Revise call, the MinimumBestOfferPrice and BestOfferAutoAcceptPrice fields in the ListingDetails container will be dropped (if set), basically turning off the Best Offer Auto Accept and/or Auto Decline features. If the seller wanted to reintroduce either of these Best Offer threshold values in the listing again, an additional Revise call would have to be made, passing in the desired threshold values.

Note: For the US site, new eBay sellers are subject to Seller Limits, which limit the quantity of items that may be listed and/or the total cumulative value of these listings. While subject to these selling limits, an eBay seller can use the GetMyeBaySelling call to retrieve both the remaining number of listings they can create and the remaining cumulative value of these listings. These values are shown in the Summary.QuantityLimitRemaining and Summary.AmountLimitRemaining fields in the GetMyeBaySelling response. If a call to add an item or revise an item would result in the exceeding of these limits, the add item or revise item call will fail. These fields will only be returned if the seller is subject to seller limits.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Listing Policies.

Item.StartPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally The original price of the item at listing or re-listing time. If this value changes when the item is revised, the new value becomes the original price.

For auction listings: Competitive bidding starts at this value. Once at least one bid has been placed, StartPrice remains the same but CurrentPrice is incremented to the amount of each succeeding bid. If ReservePrice is also specified, the value of StartPrice must be lower than the value of ReservePrice.

For input on fixed-price listings (FixedPriceItem): This is the constant price at which a buyer may purchase the item.

GetMyeBaySelling does not return Item.StartPrice for fixed price items—it returns Item.SellingStatus.CurrentPrice.

For AddFixedPriceItem and VerifyAddFixedPriceItem: Required when no variations are specified. If variations are specified, use Variation.StartPrice for each variation instead.

For Revise calls: If the StartPrice value for a fixed-price item is changed with a Revise call, the MinimumBestOfferPrice and BestOfferAutoAcceptPrice fields in the ListingDetails container will be dropped (if set), basically turning off the Best Offer Auto Accept and/or Auto Decline features. If the seller wanted to reintroduce either of these Best Offer threshold values in the listing again, an additional Revise call would have to be made, passing in the desired threshold values.

Note: For the US site, new eBay sellers are subject to Seller Limits, which limit the quantity of items that may be listed and/or the total cumulative value of these listings. While subject to these selling limits, an eBay seller can use the GetMyeBaySelling call to retrieve both the remaining number of listings they can create and the remaining cumulative value of these listings. These values are shown in the Summary.QuantityLimitRemaining and Summary.AmountLimitRemaining fields in the GetMyeBaySelling response. If a call to add an item or revise an item would result in the exceeding of these limits, the add item or revise item call will fail. These fields will only be returned if the seller is subject to seller limits.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Storefront StorefrontType Conditionally This container provides details about the seller's eBay store.

In an Add/Revise/Relist call, the seller can include this container to set/change which customized eBay store category that the item will be placed in.

For 'Get' calls, this container is returned if the seller of the item has an eBay store.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Storefront
  .StoreCategory2ID
long Conditionally Unique identifier for the secondary custom category in which to list the item. Set this field to a root-level custom category or a custom category that has no child categories (subcategories).

The system resets the value to 0 (None) in the following cases:
- The values of StoreCategoryID and StoreCategory2ID field are the same
- You specify StoreCategory2ID but not StoreCategoryID


In other words, StoreCategoryID must be set to a valid custom category and be different from StoreCategory2ID.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Storefront
  .StoreCategoryID
long Conditionally Unique identifier of a primary custom category in which to list the item. A custom category is a category that the seller created in their eBay Store. eBay Store sellers can create up to three levels of custom categories for their stores, but the API only supports root-level categories.

To list an item using the categories in a seller's store, you must set this field to a root-level custom category or a custom category that has no child categories (subcategories). If you attempt to list an item in a category that has subcategories, the call response contains a warning, and the item is listed in the 'Other' store category.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Storefront.StoreURL anyURI Conditionally The URL of the seller's eBay Stores page.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.SubTitle string Conditionally Subtitle to use in addition to the title. Provides more keywords when buyers search in titles and descriptions. You cannot use HTML in the Subtitle. (HTML characters will be interpreted literally as plain text.) If you pass any value, this feature is applied (with applicable fees).

When you revise a item, you can add, change, or remove the subtitle.

Max length: 55.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Remove a field
    (RelistItem) DeletedField
    Create an eBay Motors listing

Item.TaxCategory string Conditionally Tax exception category code. This is to be used only by sellers who have opted into sales tax being calculated by a sales tax calculation vendor. If you are interested in becoming a tax calculation vendor partner with eBay, contact developer-relations@ebay.com.

DetailLevel: ReturnAll.
Item.TimeLeft duration Always Time left before the listing ends. The duration is represented in the ISO 8601 duration format (PnYnMnDTnHnMnS). See Data Types in the Trading API Guide for information about this format. For ended listings, the time left is PT0S (zero seconds).

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Title string Always This field is used to specify the title of the listing. This field is conditionally required in an Add call unless the seller successfully uses the ProductListingDetails container to find an eBay catalog product match. When the seller successfully uses an eBay catalog product to create a listing, the listing title, listing description, Item Specifics, and stock photo defined in the catalog product are used to create the listing.

You cannot use HTML or JavaScript in the Title. (HTML characters will be interpreted literally as plain text.)

The listing title can only be changed if the active listing has yet to have any bids or sales, and the listing does not end within 12 hours.
Note: When making a GetSellerEvents call, this field will be returned masked as ***************** for on-hold listings. Note: When making a GetSellerTransactions or GetMyeBaySelling call, the item ID value of the listing will be returned in this field to indicate that the listing is on hold.
Max length: 80.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.TopRatedListing boolean Conditionally This boolean field is returned as true if the listing was created by a Top-Rated Seller and the listing has all of the requirements that qualifies it as a Top-Rated Plus listing. The Top-Rated Seller program is only available on the US, UK, and Germany sites. See the Top-Rated Seller requirements help topic for more information on qualifying as a Top-Rated Seller and the Top-Rated Plus listing requirements help topic for more information on what a listing must offer to qualify as a Top-Rated Plus listing and get the Top-Rated Plus badge. Information on the overall program can be found on the Top-Rated Seller home page in the Seller Center.
Item.UnitInfo UnitInfoType Conditionally This container provides information about the weight, volume or other quantity measurement of a listed item. The European Union requires listings for certain types of products to include the price per unit so buyers can accurately compare prices. eBay uses the UnitType and UnitQuantity values and the item's listed price to calculate and display the per-unit price on eBay EU sites.

This container will only be returned if price per unit information exists for the listing, and the IncludeItemSpecifics field was included in the call request and set to true.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.UnitInfo.UnitQuantity double Conditionally Number of units of size, weight, volume or count of the specified unit type for the item. eBay divides the item price by this number to get the price per unit to be displayed in the item listing for comparison purposes.

With GetItem, this field is returned only when you provide IncludeItemSpecifics in the request and set it to true.
Item.UnitInfo.UnitType string Conditionally Designation of size, weight, volume or count to be used to specify the unit quantity of the item. This value can be one of the following:
 Kg 100g 10g L 100ml 10ml M M2 M3 Unit 
With GetItem, this field is returned only when you provide IncludeItemSpecifics in the request and set it to true.
Item.UUID UUIDType (string) Conditionally Use an UUID value to ensure that you only list (or relist) a particular item once. This field can be particularly useful if you are listing many items on a daily basis and/or many items at once with an AddItems call. If your call request does not generate a response, or if you get one or more (blocking) errors, be sure to use the same UUID value when you attempt to list or relist the same item with another call request.

If you pass in a UUID value that has already been used to successfully create or relist an item, you will receive an error message that includes the Item ID for that listing and a boolean value indicating whether the duplicate UUID was sent by the same application.

We recommend that you use the Item.UUID field for add and relist calls (for example, AddItem and RelistItem), but use the Item.InvocationID field instead when using a revise call.

The UUID can only contain digits from 0-9 and letters from A-F and must be 32 characters long. The UUID value must be unique across all of the seller's eBay across all eBay marketplaces.

Max length: 32.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations VariationsType Conditionally
Variations are similar (but not identical) items in a multiple-variation, fixed-price listing. For example, a T-shirt listing could contain multiple items of the same brand that vary by color and size (like "Blue, Large" and "Black, Medium"). Each variation specifies a combination of one of these colors and sizes. Each variation can have a different quantity and price. You can buy multiple items from one variation at the same time. (That is, one order line item can contain multiple items from a single variation.)

If you list in two categories, both categories must support listing with variations. See VariationsEnabled in GetCategoryFeatures to determine applicable categories.

For ReviseFixedPriceItem and RelistFixedPriceItem: Once a listing has been submitted with variations, you can't delete all the variations when you revise or relist the listing (because it would be considered a different listing). You also can't add or change variation specifics (because they are unique identifiers). However, you can delete or replace individual variations as needed to match your current inventory. If a variation has no purchases, use the Variation.Delete field to delete the variation. If it has inventory, set the Quantity to 0.

As a best practice, if you want to revise multiple variations in the same listing at the same time (i.e., within a very short period), use a single ReviseFixedPriceItem request and include all the variation revisions in the same request. If your application design requires you to revise each variation individually, then avoid using multiple parallel threads. Instead, use a serial, synchronous process. That is, wait until each revision has been processed by eBay before submitting the next revision request for another variation in the same listing.

For GetItem and related calls Only returned when a listing has variations.

For GetSellerList: Only returned when a listing has variations, IncludeVariations was set to true in the request, the DetailLevel was set to ReturnAll, and an applicable pagination value and time range were specified.

For GetItemTransactions Only returned in Item when a listing has variations and IncludeVariations was set to true in the request. (Also see Variation returned in Transaction for information about which variation was actually purchased.)

For GetSellerEvents, GetMyeBayBuying, and GetMyeBaySelling: Only returned when a listing has variations and HideVariations was set to false or not specified in the request.
Note: This container will stop being returned in GetItemTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Multiple-variation listings.

Item.Variations.Pictures PicturesType Conditionally Contains a set of pictures that correspond to one of the variation specifics, such as Color. For example, if a listing has blue and black color variations, you could choose Color for all the pictures, and then include a set of pictures for the blue variations and another set of pictures for the black variations.

We strongly recommend that you also include shared pictures in Item.PictureDetails, as this results in a better experience for buyers.

For ReviseFixedPriceItem only: To replace or delete individual pictures, pass in the entire Pictures node with the complete set of variation pictures that you want in the listing. If the applicable variations have purchases or the listing ends in less than 12 hours, you can add pictures, but you can't remove existing pictures.

Variation, Pictures, or ModifyNameList (or all) need to be specified when the Variations node is specified in listing requests

Note: Only one Pictures node is allowed for a listing. However, the node has been defined as unbounded (repeatable) in the schema to allow for different use cases for some calls or sites in the future.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Include pictures for variations.

Item.Variations.Pictures
  .VariationSpecificName
string Conditionally One aspect of the variations that will be illustrated in the pictures for all variations. For example, if each variation is visually distinguished by color and the pictures show the different colors available, then specify "Color" as the name. The name must match one of the names specified in the VariationSpecifics container.

This field is required in each Item.Variations.Pictures container that is used.

Max length: 40.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Pictures
  .VariationSpecificPictureSet
VariationSpecificPictureSetType Conditionally,
repeatable: [0..*]
A container consisting of one or more picture URLs associated with a variation specific value (e.g., color=blue). For example, suppose a listing contains blue and black color variations, and VariationSpecificName=Color. In this case, one picture set could contain pictures of the blue shirts (e.g., front view, back view, and close-up of a trim detail), and another picture set could contain pictures of the black shirts.

A variation specific picture set can consist of up to 12 images hosted by eBay Picture Services (EPS) or self-hosted (hosted outside of eBay) pictures. The eBay Picture Services and self-hosted images can never be combined into the same variation specific picture set.

At least one picture set is required if the Pictures node is present in the request. You are not required to provide pictures for all values that correspond to the variation specific name. For example, a listing could have pictures depicting the blue and black color variations, but not the pink variations.

Note: All images must comply with the Picture Requirements.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Pictures
  .VariationSpecificPictureSet
  .ExtendedPictureDetails
ExtendedPictureDetailsType Conditionally Returns the URLs of the seller's self-hosted (hosted outside of eBay) variation specific pictures and the URL for the corresponding eBay Picture Services (EPS), that was generated when the picture was uploaded.
Item.Variations.Pictures
  .VariationSpecificPictureSet
  .ExtendedPictureDetails
  .PictureURLs
PictureURLsType Conditionally,
repeatable: [0..*]
This container returns the eBayPictureURL (images hosted by eBay Picture Services) and the ExternalPictureURL (images hosted outside of eBay) fields.
Item.Variations.Pictures
  .VariationSpecificPictureSet
  .ExtendedPictureDetails
  .PictureURLs.eBayPictureURL
anyURI Conditionally,
repeatable: [0..24]
The URL of an eBay Picture Services (EPS) image. This image is created when a seller uploads a self-hosted image using the UploadSiteHostedPictures, AddItem or AddFixedPriceItem call.

Max length: 150.

DetailLevel: ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Pictures
  .VariationSpecificPictureSet
  .ExtendedPictureDetails
  .PictureURLs
  .ExternalPictureURL
anyURI Conditionally The URL of a seller's self-hosted image(s).

Max length: 150.

DetailLevel: ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Pictures
  .VariationSpecificPictureSet
  .ExternalPictureURL
anyURI Conditionally,
repeatable: [0..*]
Returns the URL of a variation-specific picture that is hosted outside of eBay.

When you list, revise, or relist a variation, use VariationSpecificPictureSet.PictureURL (not ExternalPictureURL) to specify your self-hosted picture or EPS picture.

Note: All images must comply to the Picture Requirements. This is returned only when the seller used a self-hosted picture for the variation.
Max length: 150.

outputSelector: Variations.

See Picture hosting.

Item.Variations.Pictures
  .VariationSpecificPictureSet
  .PictureURL
anyURI Conditionally,
repeatable: [0..*]
The URL of a picture that is associated with the VariationSpecificValue. A variation specific picture set can consist of up to 12 self-hosted or eBay Picture Services (EPS) hosted pictures. eBay Picture Services and self-hosted images can never be combined into the same variation specific picture set. To specify more than one image, use multiple PictureURL fields, passing in a distinct URL in each of those fields. This field cannot have an empty/null value. The UploadSiteHostedPictures call can be used to upload pictures to EPS. Note that if pictures are externally-hosted, they must be hosted on a site that is using the 'https' protocol.

The image specified in the first PictureURL field is also used as the thumbnail image for applicable variations. For example, if the picture set contains pictures of red shirts (i.e., VariationSpecificName=Color and VariationSpecificValue=Red), the first picture is used as the thumbnail image for all the red shirt variations.

Note: Up to 12 pictures may be specified for one variation within a multiple-variation listing.
Note: All images, whether they are hosted by EPS or self-hosted, must comply with eBay picture requirements, including the requirement that all images must be at least 500 pixels on its longest side. If the image does not satisfy the 500 pixels requirement, the listing may be blocked. For more information about other requirements and tips for adding pictures to listings, see the Adding pictures to your listings help page. You can use Item.PictureDetails to specify additional pictures. For example, the item-level pictures could include a model wearing a black shirt, as a typical example of the shirt style.

Note: If a URL contains spaces, those spaces can be replaced with %20. For example, https://example.com/my image.jpg must be submitted as https://example.com/my%20image.jpg to replace the space in the image file name. However, a semicolon character (;) cannot be replaced with %20, so a semicolon cannot be a part of the URL, as an error will occur. Variation pictures cannot be added or removed from a fixed-price listing when the listing is scheduled to end within 12 hours or if the item variation has already had transactions.

Note: For some large merchants, there are no limitations on when variation pictures can be added or removed from a fixed-price listing, even when the item variation has had transactions or is set to end within 12 hours.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Pictures
  .VariationSpecificPictureSet
  .VariationSpecificValue
string Conditionally A value that is associated with VariationSpecificName. For example, suppose this set of pictures is showing blue shirts, and some of the variations include Color=Blue in their variation specifics. If VariationSpecificName is Color , then VariationSpecificValue would be Blue.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation VariationType Conditionally,
repeatable: [0..*]

Contains data that distinguishes one item variation from another. For example, if an item varies by color and size, each Variation node specifies a combination of one of those colors and sizes.

When listing or relisting an item, you are allowed to create a listing with only one item variation, and you might have a plan to add more item variations to the listing in the future. However, if you don't plan to add other item variations in the future, we recommend that you avoid listing with only one variation, so that you avoid confusing buyers.

If you specify multiple Variation containers in an add/revise/relist/verify add call to define multiple item variations, the Variation containers must be contiguous or an error will occur. This means that you would not want to input a Pictures or a VariationSpecificsSet container in between Variation containers in an API call.

When you modify an item variation with a ReviseFixedPriceItem call, the best practice is to include all applicable fields under the Variation container, even if some of the values/settings are not being modified. The StartPrice and VariationSpecifics must be included when modifying an existing item variation, even if these values are not being changed. If a SKU value is defined for the item variation, it is strongly recommended that you include the SKU field, regardless of whether the SKU value is changing or not. If the SKU field is not included, any existing SKU value will be removed from the item variation. It is also strongly recommended that you include the Quantity field and input an accurate value, because if the Quantity field is omitted in the API call, the quantity for the item variation is set to 0.
Note: The Item.Variations container and its child fields will stop being returned in GetItemTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Multiple-variation listings.

Item.Variations.Variation
  .DiscountPriceInfo
DiscountPriceInfoType Conditionally This container provides information for a single variation (within a multiple-variation listing) that has a Strikethrough Price (STP) or a Minimum Advertised Price (MAP) discount pricing treatment. For a multiple-variation listing, the discount pricing information should be set at the variation level and not at the item level (e.g. Item.DiscountPriceInfo). STP and MAP apply only to fixed-price listings. STP is available on the US, eBay Motors, UK, Germany, Canada (English and French), France, Italy, Spain, and Ireland sites, while MAP is available only on the US site.

Discount pricing is available to qualified sellers (and their associated developers) who participate in the Discount Pricing Program. Once qualified, sellers receive a 'special account flag' (SAF) that allows them to apply Discount Pricing to both single-variation and multi-variation items. STP is intended for eBay partners and their sellers only.

As a seller listing Discount Price items, you are required to maintain records of your discount pricing in the event you are called upon to substantiate your item pricing.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Discount pricing.

Item.Variations.Variation
  .DiscountPriceInfo
  .MadeForOutletComparisonPrice
AmountType (double) Conditionally Applicable only if the item was specifically made for sale through dedicated eBay outlet pages (e.g., eBay Fashion Outlet).

The comparison price is the price of a comparable product sold through non-outlet channels on eBay (or elsewhere), or not specifically made for the outlet.

In fashion, a "comparable" product shares the same design, but is not considered an identical product. Some products are specifically made for outlets, and may have a different SKU than the "comparable" product. These made-for-outlet products may be manufactured in a different place, with different materials, or according to different specifications (i.e. different stitch pattern, seam reinforcement, button quality, etc.)

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .DiscountPriceInfo
  .MadeForOutletComparisonPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Applicable only if the item was specifically made for sale through dedicated eBay outlet pages (e.g., eBay Fashion Outlet).

The comparison price is the price of a comparable product sold through non-outlet channels on eBay (or elsewhere), or not specifically made for the outlet.

In fashion, a "comparable" product shares the same design, but is not considered an identical product. Some products are specifically made for outlets, and may have a different SKU than the "comparable" product. These made-for-outlet products may be manufactured in a different place, with different materials, or according to different specifications (i.e. different stitch pattern, seam reinforcement, button quality, etc.)

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .DiscountPriceInfo
  .MinimumAdvertisedPrice
AmountType (double) Conditionally Minimum Advertised Price (MAP) is an agreement between suppliers (or manufacturers (OEM)) and the retailers (sellers) stipulating the lowest price an item is allowed to be advertised at. Sellers can offer prices below MAP by means of other discounts. This only applies to fixed-price listings and auction listings with the Buy It Now option.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .DiscountPriceInfo
  .MinimumAdvertisedPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Minimum Advertised Price (MAP) is an agreement between suppliers (or manufacturers (OEM)) and the retailers (sellers) stipulating the lowest price an item is allowed to be advertised at. Sellers can offer prices below MAP by means of other discounts. This only applies to fixed-price listings and auction listings with the Buy It Now option.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .DiscountPriceInfo
  .MinimumAdvertisedPriceExposure
MinimumAdvertisedPriceExposureCodeType Conditionally For MinimumAdvertisedPrice (MAP) listings only. A seller cannot show the actual discounted price on eBay's View Item page. Instead, the buyer can either click on a pop-up on eBay's View Item page, or the discount price will be shown during checkout.

Applicable values:

CustomCode
(in/out) Reserved for future use.
DuringCheckout
(in/out) This enumeration value indicates that the discounted price will only be shown to the buyer once the buyer reaches the eBay Checkout page. To enable this pricing treatment when adding/revising/relisting an item, include the DiscountPriceInfo.MinimumAdvertisedPriceExposure field in an Add/Revise/Relist calls and set its value to DuringCheckout.
None
(in/out) The value None is no longer valid. If provided in the request, it will be mapped to PreCheckout.
PreCheckout
(in/out) This enumeration value indicates that the buyer must add the item to his/her cart before the discounted price can be displayed. To enable this pricing treatment when adding/revising/relisting an item, include the DiscountPriceInfo.MinimumAdvertisedPriceExposure field in an Add/Revise/Relist calls and set its value to PreCheckout.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .DiscountPriceInfo
  .OriginalRetailPrice
AmountType (double) Conditionally The actual retail price set by the manufacturer (OEM). eBay does not maintain or validate the OriginalRetailPrice supplied by the seller. OriginalRetailPrice should always be more than StartPrice. Compare the StartPrice/BuyItNowPrice to OriginalRetailPrice to determine the amount of savings to the buyer.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .DiscountPriceInfo
  .OriginalRetailPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally The actual retail price set by the manufacturer (OEM). eBay does not maintain or validate the OriginalRetailPrice supplied by the seller. OriginalRetailPrice should always be more than StartPrice. Compare the StartPrice/BuyItNowPrice to OriginalRetailPrice to determine the amount of savings to the buyer.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .DiscountPriceInfo
  .PricingTreatment
PricingTreatmentCodeType Conditionally Based on OriginalRetailPrice, MinimumAdvertisedPrice, and StartPrice values, eBay identifies whether the listing falls under MAP or STP (aka OriginalRetailPrice). GetItem returns this for items listed with one of these discount pricing treatments. GetSellerList returns the DiscountPriceInfo container. This field is not applicable for Add/Revise/Relist calls.
Default: false.

Applicable values:

CustomCode
(out) Reserved for future use.
MAP
(out) This enumeration value indicates that Minimum Advertised Pricing is enabled for the order line item. If this value is returned, the minimum advertised price is found in the MinimumAdvertisedPrice field.
MFO
(out) This enumeration value indicates that Made For Outlet Comparison Pricing is enabled for the order line item. If this value is returned, the Made For Outlet Comparison price is found in the MadeForOutletComparisonPrice field.
None
(out) This enumeration value indicates that neither Strikethrough Pricing or Minimum Advertised Pricing is enabled for the order line item.
STP
(out) This enumeration value indicates that Strikethrough Pricing is enabled for the order line item. If this value is returned, the price in the OriginalRetailPrice field will be crossed out in the View Item page.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .DiscountPriceInfo.SoldOffeBay
boolean Conditionally Used by the eBay UK and eBay Germany (DE) sites, this flag indicates that the discount price (specified as StartPrice) is the price for which the seller offered the same (or similar) item for sale on a Web site or offline store other than eBay in the previous 30 days. The discount price is always in reference to the seller's own price for the item.

If this field is set to true, eBay displays 'Was*' in the UK and 'Ursprunglich*' in Germany, next to the discounted price of the item. In the event both SoldOffeBay and SoldOneBay fields are set to true, SoldOneBay takes precedence.

Default: false.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .DiscountPriceInfo.SoldOneBay
boolean Conditionally Used by the eBay UK and eBay Germany (DE) sites, this flag indicates that the discount price (specified as StartPrice) is the price for which the seller offered the same (or similar) item for sale on eBay within the previous 30 days. The discount price is always in reference to the seller's own price for the item.

If this field is set to true, eBay displays 'Was' in the UK and 'Ursprunglich' in Germany, next to the discounted price of the item. In the event both SoldOffeBay and SoldOneBay fields are set to true, SoldOneBay takes precedence.

Default: false.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .Quantity
int Conditionally
This value indicates the quantity of the specific variation that are available for purchase. If you set Variation.Quantity to 0 when you create, revise, or relist an item listing, the variation is dropped from the listing. To prevent this, you can set SetUserPreferences.OutOfStockControlPreference to true.

For GetItem (and other related calls that retrieve the Item object), the Variation.Quantity value indicates the total quantity associated with the variation, including the quantity available and the quantity sold. To calculate the quantity available for sale, subtract SellingStatus.QuantitySold from this value.

For RelistFixedPriceItem:
  • For an item variation that had an available quantity greater than 0 when the listing ended, the Quantity value of the item variation for the newly relisted item is set to the actual quantity available. For item variations, there is actually no QuantityAvailable field, but this value may be derived if you look at the corresponding item variation in a GetMyeBaySelling) response and subtract the Variation.QuantitySold value from the Variation.Quantity value, which represents the original Variation.Quantity value at creation time of the previous listing.
  • For item variations with an available quantity of 0 when the listing ended, the relisted item will retain the Variaton.Quantity value that was passed in at creation time of the previous listing.
So, if you are relisting an item that had one or more item variations with an available quantity of 0 when the listing ended, we strongly recommend that you pass in the correct available quantity through the corresponding Variation.Quantity field of a relist call. Alternatively, you can update the correct quantity available by using a ReviseInventoryStatus call and passing in a Quantity value, while also making sure to pass in the correct SKU value(s) to identify the correct item variation. A ReviseInventoryStatus call can be used to revise the quantity of up to four single item listings and/or item variations (from the same or different listings).

For ReviseFixedPriceItem: You can revise a variation's quantity at any time, even if it has purchases. However, unless you set the OutOfStockControlPreference boolean field of the SetUserPreferences call to true, at least one variation must remain with a non-zero quantity in order for the listing to remain active. If you set the OutOfStockControlPreference field to true, a multiple-variation listing will remain active but hidden from search even if the quantity of all variations in the listing is set to 0. When you modify a variation during revise or relist, you need to include both its StartPrice and Quantity. If you revise the Quantity value for a variation after items have already sold, specify the quantity available for sale. (eBay will automatically add the quantity sold to the value you specify.) If you set the quantity to 0 and the variation has no purchases, the variation may be dropped from the listing.

For GetSellerTransactions: See Item.Quantity instead.

See the Trading API User Guide for more details about setting and modifying a variation's quantity.

Note: The number in the Variation.Quantity field represents the current quantity of the item variation that is available using the "Ship to home" fulfillment method. This number does not take into account any quantity of the item variation that is available through "local" fulfillment methods such as In-Store Pickup or Click and Collect. This is due to the fact that there is no current implementation (or API field) where the seller informs eBay about the quantity of item variations available through each local fulfillment method. In the case where a listing is only offering the item variations through a local fulfillment method, this value should default to 0, and the Item.IgnoreQuantity will also be returned as True.
Note: The Item.Variations container and its child fields will stop being returned in GetItemTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Set and adjust a variation's quantity
    Out-of-Stock control

Item.Variations.Variation
  .SellingStatus
SellingStatusType Conditionally Contains the variation's quantity sold. Always returned when variations are present.
Note: The Item.Variations container and its child fields will stop being returned in GetItemTransactions on January 31, 2024.
Item.Variations.Variation
  .SellingStatus.AdminEnded
boolean Conditionally If included in the response as true, indicates that the listing was administratively canceled due to a violation of eBay's listing policies and that the item can be relisted using RelistItem.

Note: GetItem returns an error (invalid item ID) in the response if Item.SellingStatus.AdminEnded = true and the requesting user is not the seller of the item.
Item.Variations.Variation
  .SellingStatus.BidCount
int Always Number of bids placed so far against the auction item.
Item.Variations.Variation
  .SellingStatus.BidIncrement
AmountType (double) Always The minimum amount a progressive bid must be above the current high bid to be accepted. This field is only applicable to auction listings. The value of this field will always be '0.00' for Classified Ad and fixed-price listings.
Item.Variations.Variation
  .SellingStatus.BidIncrement
  [ attribute currencyID ]
CurrencyCodeType Conditionally The minimum amount a progressive bid must be above the current high bid to be accepted. This field is only applicable to auction listings. The value of this field will always be '0.00' for Classified Ad and fixed-price listings.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .SellingStatus
  .ConvertedCurrentPrice
AmountType (double) Conditionally Converted value of the CurrentPrice in the currency of the site that returned this response. For active items, refresh the listing's data every 24 hours to pick up the current conversion rates. Only returned when the item's CurrentPrice on the listing site is in different currency than the currency of the host site for the user/application making the API call. ConvertedCurrentPrice is not returned for Classified listings (Classified listings are not available on all sites).

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.
Item.Variations.Variation
  .SellingStatus
  .ConvertedCurrentPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Converted value of the CurrentPrice in the currency of the site that returned this response. For active items, refresh the listing's data every 24 hours to pick up the current conversion rates. Only returned when the item's CurrentPrice on the listing site is in different currency than the currency of the host site for the user/application making the API call. ConvertedCurrentPrice is not returned for Classified listings (Classified listings are not available on all sites).

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .SellingStatus.CurrentPrice
AmountType (double) Always The current price of the item in the original listing currency.

For auction listings, this price is the starting minimum price (if the listing has no bids) or the current highest bid (if bids have been placed) for the item. This does not reflect the BuyItNow price.

For fixed-price and ad format listings, this is the current listing price.

In multi-variation, fixed-price listings, this value matches the lowest-priced variation that is still available for sale.
Item.Variations.Variation
  .SellingStatus.CurrentPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally The current price of the item in the original listing currency.

For auction listings, this price is the starting minimum price (if the listing has no bids) or the current highest bid (if bids have been placed) for the item. This does not reflect the BuyItNow price.

For fixed-price and ad format listings, this is the current listing price.

In multi-variation, fixed-price listings, this value matches the lowest-priced variation that is still available for sale.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .SellingStatus.HighBidder
UserType Conditionally For ended auction listings that have a winning bidder, this field is a container for the high bidder's user ID. For ended, single-item, fixed-price listings, this field is a container for the user ID of the purchaser. This field isn't returned for auctions with no bids, or for active fixed-price listings.

In the case of PlaceOffer, for auction listings, this field is a container for the high bidder's user ID. In the PlaceOffer response, the following applies: For multiple-quantity, fixed-price listings, the high bidder is only returned if there is just one order line item (or only for the first order line item that is created).
Item.Variations.Variation
  .SellingStatus.HighBidder
  .AboutMePage
boolean Conditionally
A value of true indicates that the user has set up an About Me page.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .BuyerInfo
BuyerType Conditionally Contains information about the user as a buyer, such as the shipping address. See BuyerType for its child elements.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
AddressType Conditionally This container shows the buyer's shipping address.

Note: For an Authenticity Guarantee program order returned in GetItemTransactions or GetSellerTransactions, this is the address of the authenticator's warehouse. The authenticator is responsible for delivery to the buyer's shipping address.

Note: For In-Store Pickup and Click and Collect orders, this is the address of the merchant's store where the buyer will pick up the order. This is only applicable for GetItemTransactions and GetSellerTransactions calls.

Note: For eBay Vault scenarios: GetItemTransactions calls, and GetSellerTransactions calls (Seller View only), mock address details are returned for:

- Vault to vault orders: Buyer and Seller View

- Ship to vault orders: Mock addresses are returned for the Buyer View (only); the address returned for the Seller View will be the authenticator&apos;s address.

- Vault in-hand submission orders: the address returned for the Buyer View will be the authenticator's address (GetItemTransactions only).

The following address details are returned for mock addresses:

 <ShippingAddress> 
 <Name>eBay Vault</Name>
 <AddressID>Invalid Request</AddressID>
 <AddressOwner>eBay</AddressOwner>
 <AddressUsage>Invalid</AddressUsage>
 <CityName>Invalid Request</CityName>
 <Country>US</Country>
 <CountryName>Invalid Request</CountryName>
 <ExternalAddressID>Invalid Request</ExternalAddressID>
 <Phone>Invalid Request</Phone>
 <PostalCode>Invalid Request</PostalCode>
 <StateOrProvince>Invalid Request</StateOrProvince>
 <Street1>Invalid Request</Street1>
 <Street2></Street2>
</ShippingAddress>



DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
  .Country
CountryCodeType Conditionally The two-digit code representing the country of the user.

If not provided as input, eBay uses the country associated with the eBay Site ID when the call is made.



Applicable values: See Country.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
  .FirstName
string Conditionally Displays the first name of the seller (in a business card format) if the seller's SellerBusinessCodeType value is Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
  .LastName
string Conditionally Displays the last name of the seller (in a business card format) if the seller's SellerBusinessCodeType is set to Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .BuyerInfo.ShippingAddress
  .PostalCode
string Conditionally User's postal code.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .eBayGoodStanding
boolean Conditionally
This boolean field is returned as true if the eBay user is in good standing with eBay.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .Email
string Conditionally Email address for the user. Please see the links below to the topics related to anonymous user information and static email addresses. You cannot retrieve an email address for any user with whom you do not have an order relationship, regardless of site.

An email address of another user is only returned if you and the other user are in an order relationship, within a certain time of order line item creation (although this limitation isn't applicable to the GetAllBidders call in the case of motor vehicles categories.) Based on Trust and Safety policies, the time is unspecified and can vary by site.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

For the GetOrders call, the buyer's email address will be returned (to the seller only) for orders less than two weeks old, but for orders that occurred more than two weeks in the past, the buyer's email address will no longer be returned. This Email field will still be returned, but 'dummy data', such as Invalid Request will replace the actual email address.

Note: For the GetItemTransactions call, this field is only returned to the seller of the order; this field is not returned for the buyer or third party.
Max length: 64 for US. May differ for other countries. Note: The eBay database allocates up to 128 characters for this field .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Anonymous user information
    Member communications

Item.Variations.Variation
  .SellingStatus.HighBidder
  .FeedbackPrivate
boolean Conditionally Indicates whether the user has chosen to make their feedback score and feedback details private (hidden from other users). The percentage of positive feedback can still be returned, even if other feedback details are private.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder
  .FeedbackRatingStar
FeedbackRatingStarCodeType Conditionally
A visual indicator of an eBay user's Feedback score. A different colored star is used for each range of Feedback scores. See FeedbackRatingStarCodeType for specific values.
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

Applicable values: See FeedbackRatingStar.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .FeedbackScore
int Conditionally The aggregate feedback score for a user. A user's feedback score is the net positive feedback minus the net negative feedback left for the user. Feedback scores are a quantitative expression of the desirability of dealing with a user as a buyer or a seller in either side of an order.

Each order line item can result in one feedback entry for a given user (the buyer can leave feedback for the seller, and the seller can leave feedback for the buyer.). That one feedback can be positive, negative, or neutral. The aggregated feedback counts for a particular user represent that user's overall feedback score (referred to as a "feedback rating" on the eBay site).

If the user has chosen to make their feedback private and that user is not the user identified in the request's authentication token, FeedbackScore is not returned and FeedbackPrivate is returned with a value of true.

In GetMyeBayBuying and GetMyeBaySelling, feedback information (FeedbackScore and FeedbackRatingStar) is returned in BidList.ItemArray.Item.Seller. For GetMyeBayBuying, the feedback score of each seller with an item having received a bid from the buyer is returned. For GetMyeBaySelling, the feedback score of the seller is returned.

GetMyeBayBuying and GetMyeBaySelling also return feedback information (FeedbackScore and FeedbackRatingStar) in BidList.ItemArray.Item.SellingStatus.HighBidder. GetMyeBayBuying returns feedback information on the high bidder of each item the buyer is bidding on. GetMyeBaySelling returns feedback information on the high bidder of each item the seller is selling.

Since a bidder's user info is anonymous, the real feedback score will be returned only to that bidder, and to the seller of an item that the user is bidding on. For all other users, the value -99 is returned.

For GetOrders and GetItemTransactions only: If using Trading WSDL Version 1019 or above, this field will only be returned to the buyer or seller, and no longer returned at all to third parties. If using a Trading WSDL older than Version 1019, the accurate Feedback Score for the user is returned to the buyer or seller, but a dummy value of 0 will be returned to all third parties.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder
  .IDVerified
boolean Conditionally
Indicates whether the user has been verified. For more information about the ID Verify program, see: Protecting your account
Note: This field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .NewUser
boolean Conditionally This boolean is returned as true if the eBay user has been registered on eBay for 30 days or less.
Note: The Buyer.NewUser field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .PositiveFeedbackPercent
float Conditionally Percent of total feedback that is positive. For example, if the member has 50 feedbacks, where 49 are positive and 1 is neutral or negative, the positive feedback percent could be 98.0. The value uses a max precision of 4 and a scale of 1. If the user has feedback, this value can be returned regardless of whether the member has chosen to make their feedback private. Not returned if the user has no feedback.

For GetOrders and GetItemTransactions only: If using Trading WSDL Version 1019 or above, this field will only be returned to the buyer or seller, and no longer returned at all to third parties. If using a Trading WSDL older than Version 1019, the accurate Positive Feedback Percentage value for the user is returned to the buyer or seller, but a dummy value of 0.0 will be returned to all third parties.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress
AddressType Conditionally
This container consists of the Registration address for the eBay user.

GetUser: eBay returns complete RegistrationAddress details (including Phone), as applicable to the registration site for the eBay user making the call.

GetItem and GetSellerTransactions: RegistrationAddress for another user (except for Phone) is only returned if you have an order relationship with that user AND that user is registered on DE/AT/CH, regardless of your registration site and the site to which you send the request. For example, the seller can see the buyer's registration address if the buyer is registered on DE/AT/CH, or the buyer can see the seller's registration address if the seller is registered on DE/AT/CH. (The buyer and seller won't see their own registration addresses in GetItem.)
Note: This container and its child fields will stop being returned in GetSellerTransactions on January 31, 2024.

DetailLevel: ReturnAll.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.CityName
string Conditionally The city associated with an address on file with eBay. Most addresses include a city name, but not all. For example, Singapore is an island city-state, so SG would appear in the Country field, and 'Singapore' or 'Republic of Singapore' would appear in the CountryName field, but the CityName field is not applicable.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.Country
CountryCodeType Conditionally The two-digit code representing the country of the user.

If not provided as input, eBay uses the country associated with the eBay Site ID when the call is made.



Applicable values: See Country.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress
  .CountryName
string Conditionally The full name of the country associated with an address on file with eBay.

Max length: eBay validates the content, but not the length for this field. Note: The eBay database allocates up to 128 characters for this field. .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.FirstName
string Conditionally Displays the first name of the seller (in a business card format) if the seller's SellerBusinessCodeType value is Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.LastName
string Conditionally Displays the last name of the seller (in a business card format) if the seller's SellerBusinessCodeType is set to Commercial.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.Name
string Conditionally
The eBay user's name associated with an address on file with eBay.
Note: The Seller.RegistrationAddress container and its child fields will stop being returned in GetSellerTransactions on January 31, 2024.
Max length: 128.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.Phone
string Conditionally User's primary phone number. This may return a value of Invalid Request if you are not authorized to see the user's phone number.

In the US, the area code (3 digits), the prefix (3 digits), the line number (4 digits), and phone extension (if specified by the user) are returned in this field. The extension can be one or more digits. Non-breaking spaces are used as delimiters between these phone number components.

Max length: eBay validates the content (should only be integer values and delimiters), but not the length for this field. Note: The eBay database allocates up to 128 characters for this field. .

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress
  .PostalCode
string Conditionally User's postal code.

Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.Street
string Conditionally A concatenation of Street1 and Street2, primarily used for a registration address.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.Street1
string Conditionally The first line of the user's street address.

Note: Note the different maximum lengths noted below for different countries. If a street name exceeds the maximum length for the applicable country, the full street name may be expressed through both the Street1 and Street2 fields.
Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationAddress.Street2
string Conditionally The second line of the user's street address (such as an apartment number or suite number).

Returned if the user specified a second street value for their address.
Note: In case of Item.SellerContactDetails, Street2 can be used to provide City, Address, State, and Zip code (if applicable). Note: Note the different maximum lengths noted below for different countries. If a street name exceeds the maximum length for the applicable country, the full street name may be expressed through both the Street1 and Street2 fields. Note: In the case of TransactionArray.Transaction.MultiLegShippingDetails.SellerShipmentToLogisticsProvider.ShipToAddress, if the item is being shipped through eBay International Shipping and this address refers to an intermediated warehouse address, the eBay Virtual Tracking number (eVTN) that is used for the domestic leg of the shipment is appended to Street2. This value is generated by eBay when the order is completed. Example:"Reference #1234567890123456"
Max length: GB, DE - 35; US, CA - 40; AU - 80; Other countries - 50.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .RegistrationDate
dateTime Always Indicates the date the specified user originally registered with eBay.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder.Site
SiteCodeType Conditionally eBay site the user is registered with.

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

Applicable values: See Site.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder
  .Status
UserStatusCodeType Conditionally Indicates the user's registration/user status.

Applicable values: See Status.
Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.HighBidder
  .UserAnonymized
boolean Always Indicates whether or not the User container has been made anonymous. If true, some elements in the User container have either been removed, or had their values changed to remove identifying characteristics. If false, all expected elements are returned, and no values are changed.

Since a bidder's user info is anonymous, this tag is returned as false only to the bidder, and to the seller of an item that the user is bidding on. For all other users, this tag is returned as true.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder
  .UserID
UserIDType (string) Conditionally Unique eBay user ID for the user.

Since a bidder's user info is anonymous, this tag contains the actual value of an ID only for that bidder, and for the seller of an item that the user is bidding on. For other users, the actual value is replaced by an anonymous value, according to these rules:

When bidding on items, UserID is replaced with the value "a****b" where a and b are random characters from the UserID. For example, if the UserID = IBidALot, it might be displayed as, "I****A".

Important: In this format, the anonymous bidder ID can change for each auction. For GetMyeBayBuying only, when bidding on items: UserID is replaced with the value "a****b" where a and b are random characters from the UserID.

When bidding on items listed on the Philippines site: UserID is replaced with the value "Bidder X" where X is a number indicating the order of that user's first bid. For example, if the user was the third bidder, UserID = Bidder 3. Note that in this Philippines site format, the anonymous bidder ID stays the same for a given auction, but is different for different auctions. For example, a bidder who is the third and then the seventh bidder in an auction will be listed for both bids as "Bidder 3". However, if that same bidder is the first bidder on a different auction, the bidder will be listed for that auction as "Bidder 1", not "Bidder 3".

For GetMyeBayBuying only, when bidding on items listed on the UK and AU sites: UserID is replaced with the string "High Bidder".

For PlaceOffer, see also SellingStatus.HighBidder.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder
  .UserIDChanged
boolean Conditionally If true, identifies a user whose ID has changed within the last 30 days. Does not indicate a new user (see NewUser).

Since a bidder's user info is anonymous, this tag will be returned only to that bidder, and to the seller of an item that the user is bidding on.

Note: For the GetItemTransactions call, this field is only returned to the seller of the order; this field is not returned for the buyer or third party.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder
  .UserIDLastChanged
dateTime Conditionally
Date and time when the user last changed their eBay user ID (in GMT).
Note: The Buyer.UserIDLastChanged field will stop being returned in GetItemTransactions and GetSellerTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Anonymous user information.

Item.Variations.Variation
  .SellingStatus.HighBidder
  .VATStatus
VATStatusCodeType Conditionally Indicates whether or not the user is subject to VAT. Users who have registered with eBay as VAT-exempt are not subject to VAT. See documentation on Value-Added Tax (VAT).

Applicable values:

CustomCode
(out) Reserved for internal or future use
NoVATTax
(out) VAT is not applicable
VATExempt
(out) Residence in a country with VAT and user is registered as VAT-exempt
VATTax
(out) Residence in a country with VAT and user is not registered as VAT-exempt

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Vat-exempt sellers.

Item.Variations.Variation
  .SellingStatus.LeadCount
int Conditionally Applicable to Ad type listings only. Indicates how many leads to potential buyers are associated with this item. Returns 0 (zero) for listings in other formats. You must be the seller of the item to retrieve the lead count.
Item.Variations.Variation
  .SellingStatus.ListingOnHold
boolean Conditionally Indicates if a listing is on hold due to an eBay policy violation.

If a listing is put on hold, users are unable to view the listing details, the listing is hidden from search, and all attempted purchases, offers, and bids for the listing are blocked. eBay, however, gives sellers the opportunity to address violations and get listings fully reinstated. A listing will be ended if a seller does not address a violation, or if the violation can not be rectified.

If a listing is fixable, the seller should be able to view the listing details and this boolean will be returned as true.

Once a listing is fixed, this boolean will no longer be returned.
Item.Variations.Variation
  .SellingStatus.ListingStatus
ListingStatusCodeType Always Specifies an active or ended listing's status in eBay's processing workflow.
  • If a listing ends with a sale (or sales), eBay needs to update the sale details (e.g., total price and buyer/high bidder) and the transaction fees. This processing can take several minutes.
  • If you retrieve a sold item and no details about the buyer/high bidder are returned or no transaction fees are available, use this listing status information to determine whether eBay has finished processing the listing.


Applicable values:

Active
(out) The listing is still active or the listing has ended with a sale but eBay has not completed processing the sale details. If the listing has ended with a sale but this Active status is returned, please allow several minutes for eBay to finish processing the listing.
Completed
(out) The listing has closed and eBay has completed processing the sale. All sale information returned from eBay should be considered accurate and complete. In this state, all transaction fees should be calculated.
Custom
(out) Reserved for internal or future use.
CustomCode
(out) Reserved for internal or future use.
Ended
(out) The listing has ended. If the listing ended with a sale, eBay has completed processing of the sale. All sale information returned from eBay should be considered accurate and complete. However, the transaction fees are not yet available.

Code so that your app gracefully handles any future changes to this list.
Item.Variations.Variation
  .SellingStatus.MinimumToBid
AmountType (double) Always Smallest amount the next bid on the item can be. Returns same value as Item.StartPrice (if no bids have yet been placed) or CurrentPrice plus BidIncrement (if at least one bid has been placed). Only applicable to auction listings. Returns null for fixed-price and Ad type listings.

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.
Item.Variations.Variation
  .SellingStatus.MinimumToBid
  [ attribute currencyID ]
CurrencyCodeType Conditionally Smallest amount the next bid on the item can be. Returns same value as Item.StartPrice (if no bids have yet been placed) or CurrentPrice plus BidIncrement (if at least one bid has been placed). Only applicable to auction listings. Returns null for fixed-price and Ad type listings.

In multi-variation listings, this value matches the lowest-priced variation that is still available for sale.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .SellingStatus
  .PromotionalSaleDetails
PromotionalSaleDetailsType Conditionally If a seller has reduced the price of a listed item with the Promotional Price Display feature, this field contains the original price of the discounted item, along with the start-time and end-time of the discount.
Item.Variations.Variation
  .SellingStatus
  .PromotionalSaleDetails
  .EndTime
dateTime Conditionally End time of a discount for an item whose price a seller has reduced with the Promotional Price Display feature.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus
  .PromotionalSaleDetails
  .OriginalPrice
AmountType (double) Conditionally Original price of an item whose price a seller has reduced with the Promotional Price Display feature.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus
  .PromotionalSaleDetails
  .OriginalPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally Original price of an item whose price a seller has reduced with the Promotional Price Display feature.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .SellingStatus
  .PromotionalSaleDetails
  .StartTime
dateTime Conditionally Start time of a discount for an item whose price a seller has reduced with the Promotional Price Display feature.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.QuantitySold
int Always The total number of items purchased so far (in the listing's lifetime). Subtract this from Quantity to determine the quantity available.

If the listing has Item Variations, then in GetItem (and related calls) and GetItemTransactions, Item.SellingStatus.QuantitySold contains the sum of all quantities sold across all variations in the listing, and Variation.SellingStatus.QuantitySold contains the number of items sold for that variation.

In GetSellerTransactions, Transaction.Item.SellingStatus.QuantitySold contains the number of items sold in that order line item.

For order line item calls, also see Transaction.QuantityPurchased for the number of items purchased in the order line item.
In multi-variation listings, this value matches total quantity sold across all variations.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus
  .QuantitySoldByPickupInStore
int Always Indicates the total quantity of items sold and picked up by buyers using the In-Store Pickup option. This value is the total number of items purchased by one or more buyers using the In-Store Pickup option, and is not the total number of In-Store Pickup orders. So, if two buyers selected the In-Store Pickup option, but each of these buyers bought a quantity of five of these items (in same purchase), the Item.SellingStatus.QuantitySoldByPickupInStore value would be '10' and not '2'.

In the case of multi-variation, fixed-price listings, each Item.Variations.Variation.SellingStatus.QuantitySoldByPickupInStore value indicates the total quantity of that corresponding item variation (for example, large blue shirts) sold and picked up by buyers using the In-Store Pickup option, and the Item.SellingStatus.QuantitySoldByPickupInStore value would be the total quantity of all item variations sold for the listing.

This field is returned only if the listing is eligible for In-Store Pickup (EligibleForPickupInStore is returned as true).

Note: At this time, the In-Store Pickup feature is generally only available to large retail merchants, and can only be applied to multi-quantity, fixed-price listings.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .SellingStatus.ReserveMet
boolean Always Indicates whether the reserve price has been met for the listing. Returns true if the reserve price was met or no reserve price was specified.
Item.Variations.Variation
  .SellingStatus
  .SecondChanceEligible
boolean Always Part of the Second Chance Offer feature, indicates whether the seller can extend a second chance offer for the item.
Item.Variations.Variation
  .SellingStatus.SoldAsBin
boolean Conditionally If this flag appears in the GetItem response, the auction has ended due to the item being sold to a seller using the Buy It Now option. This flag is not relevant for fixed-priced listings.
Item.Variations.Variation.SKU SKUType (string) Conditionally
A SKU (stock keeping unit) is a seller-defined identifier. It is only intended for the seller's use (not for buyers). A SKU value is not required, but many large sellers like to add SKU value to their listings. If defined on a listing, a SKU value can be used by sellers to reconcile their eBay inventory with your own inventory system, instead of using the VariationSpecifics identifying values.

If specified, all SKU values must be unique within the Variations node. That is, no two variations within the same listing can have the same SKU.

If you include the Item.InventoryTrackingMethod field in an 'FixedPriceItem' call and set its value to SKU, the Variation.SKU values become required for each variation..

For GetItem, GetOrders and other 'Get' calls: Only returned if the seller specified a SKU for the variation.
Note: The Item.Variations container and its child fields will stop being returned in GetItemTransactions on January 31, 2024.
Max length: 80.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See SKU identifiers.

Item.Variations.Variation
  .StartPrice
AmountType (double) Conditionally
The fixed price for this item variation. For example, a "Blue, Large" variation price could be USD 10.00, and a "Black, Medium" variation price could be USD 5.00.

Each variation requires this field, and the prices can be the same for all variations, or be different for each variation. This enables sellers to provide discounts on certain variations without affecting the price of others. Required (and always returned) for listings with variations.

You can revise a variation's price at any time (even if it has purchases). When you modify a variation during revise or relist, you need to include both its StartPrice and Quantity.
Note: The Item.Variations container and its child fields will stop being returned in GetItemTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Pricing.

Item.Variations.Variation
  .StartPrice
  [ attribute currencyID ]
CurrencyCodeType Conditionally
The fixed price for this item variation. For example, a "Blue, Large" variation price could be USD 10.00, and a "Black, Medium" variation price could be USD 5.00.

Each variation requires this field, and the prices can be the same for all variations, or be different for each variation. This enables sellers to provide discounts on certain variations without affecting the price of others. Required (and always returned) for listings with variations.

You can revise a variation's price at any time (even if it has purchases). When you modify a variation during revise or relist, you need to include both its StartPrice and Quantity.
Note: The Item.Variations container and its child fields will stop being returned in GetItemTransactions on January 31, 2024.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .VariationExtendedProducerResponsibility
VariationExtendedProducerResponsibilityType Conditionally This container defines variation-specific Extended Producer Responsibility information, specifically the EcoParticipationFee.

For GetItem calls, this container is only returned to the listing owner, if the container is available.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationExtendedProducerResponsibility
  .EcoParticipationFee
AmountType (double) Conditionally This is the fee paid for new items to the eco-organization (for example, "eco-organisme" in France) fee for each variation in a multiple-variation listing. It is a contribution to the financing of the elimination of the item responsibly. For multiple-variation listings, this EcoParticipationFee (in the VariationExtendedProducerResponsibility container) is used and not the EcoParticipationFee in the ExtendedProducerResponsibility container.
Min: 0.0.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationExtendedProducerResponsibility
  .EcoParticipationFee
  [ attribute currencyID ]
CurrencyCodeType Conditionally This is the fee paid for new items to the eco-organization (for example, "eco-organisme" in France) fee for each variation in a multiple-variation listing. It is a contribution to the financing of the elimination of the item responsibly. For multiple-variation listings, this EcoParticipationFee (in the VariationExtendedProducerResponsibility container) is used and not the EcoParticipationFee in the ExtendedProducerResponsibility container.

For a list of possible enumeration values, see CurrencyCodeType.
Item.Variations.Variation
  .VariationProductListingDetails
VariationProductListingDetailsType Conditionally This container is used to provide one or more product identifiers for a product variation within a multiple-variation, fixed-price listing. The same product identifier type(s) must be used for all product variations within the listing. For instance, if one product variation uses ISBNs, all product variations must use ISBN values.

Note: Currently, the EAN, ISBN, or UPC fields are used to specify a Global Trade Item Number (GTIN), and the GetCategoryFeatures call is used to see if particular product identifier types are supported/required. The ProductReferenceID field can only be used to specify an ePID for an eBay Catalog product that is part of the Product-Based Shopping Experience mandate. For more information about PBSE, see the Product-Based Shopping Experience page.
When you include the VariationProductListingDetails container in a call, you must specify at least one GTIN or ePID. If an ePID is provided, a matching eBay catalog product must exist for the value that is passed in.

For ReviseItem and RelistItem only: When you revise a listing, if it ends within 12 hours, you cannot change the product identifier and you cannot remove existing product variation listing details data.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationProductListingDetails
  .EAN
string Conditionally This field is used if the seller wants to, or is required to identify each product variation within a multiple-variation listing by an EAN (European Article Number) value. An EAN is a unique 8 or 13-digit identifier that many industries (such as book publishers) use to identify products. The seller can use the GetCategoryFeatures call to see if an EAN is supported/required for a category.

Note: If the listing is being posted to a category that expects EAN values, but one doesn't exist for the product, the seller must pass in the text that can be found in the ProductDetails.ProductIdentifierUnavailableText field of the GeteBayDetails response. To get the ProductDetails container to return in the GeteBayDetails response, ProductDetails should be included as a DetailName value in the call request.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationProductListingDetails
  .ISBN
string Conditionally This field is used if the seller wants to, or is required to identify each product variation within a multiplge-variation listing by an ISBN (International Standard Book Number) value. An ISBN is a unique identifer for books. Both 10 and 13-character ISBNs are supported. When specifying a 13-character ISBN, the value must begin with either '978' or '979'. The seller can use the GetCategoryFeatures call to see if an ISBN is supported/required for a category.

Note: If the listing is being posted to a category that expects ISBN values, but one doesn't exist for the product, the seller must pass in the text that can be found in the ProductDetails.ProductIdentifierUnavailableText field of the GeteBayDetails response. To get the ProductDetails container to return in the GeteBayDetails response, ProductDetails should be included as a DetailName value in the call request.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationProductListingDetails
  .ProductReferenceID
string Conditionally Note: DO NOT USE.

Currently, sellers cannot associate an eBay catalog product with single variations within a multiple-variation listing for any eBay category. If the seller attempts to supply an eBay Product Identifier (ePID) at the variation level, a warning will get returned in the response stating that, 'Specifying a product identifier on a variant is not allowed in this category.'.

The ProductReferenceID field was originally added as part of the Product-Based Shopping Experience (PBSE) mandate, and eBay was going to allow and even require ePIDs to be specified for some leaf categories. However, with the rollback of the PBSE mandate, this field is not currently applicable or supported.

Max length: 38 (42 with "EPID").

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationProductListingDetails
  .UPC
string Conditionally This field is used if the seller wants to, or is required to identify each product variation within a multiple-variation listing by a UPC (Universal Product Code) value. A UPC is a commonly-used identifier for many different products. The seller can use the GetCategoryFeatures call to see if a UPC is supported/required for a category.

Note: If the listing is being posted to a category that expects UPC values, but one doesn't exist for the product, the seller must pass in the text that can be found in the ProductDetails.ProductIdentifierUnavailableText field of the GeteBayDetails response. To get the ProductDetails container to return in the GeteBayDetails response, ProductDetails should be included as a DetailName value in the call request.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationSpecifics
NameValueListArrayType Conditionally,
repeatable: [2..5]

A list of name/value pairs that uniquely identify the variation within the listing. All variations must specify the same set of Item Specific names, but each variation must provide a unique combination of values for those Item Specific names. For example, if the items vary by color and size, then every variation must specify 'Color' and 'Size' as Item Specific names, but no two variations can specify the same combination of 'Color' and 'Size' values.

When you revise a listing that includes variations, you can change names of Variationpecifics by using the Variations.ModifyNameList container. You can also add, delete, or replace individual variations as needed to match your current inventory. Use the Variation.Delete field to delete a variation that has no sales (order line items). If the variation has sales, then set the Quantity to 0.

For GetSellerEvents To keep the GetSellerEvents response smaller, Variationpecifics are not returned if the variation has a SKU. If the variation has no SKU, then Variationpecifics are returned instead. Optionally, you can pass IncludeVariationSpecifics as true in the request to force Variationpecifics to be returned, even when the SKU is returned.
Note: The Item.Variations container and its child fields will stop being returned in GetItemTransactions on January 31, 2024.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Configure variation-selection widgets for buyers (View Item)
    Revise and relist with variations

Item.Variations.Variation
  .VariationSpecifics
  .NameValueList
NameValueListType Conditionally,
repeatable: [0..*]
For the AddItem family of calls: Contains the name and value(s) for an Item Specific. Only required when the ItemSpecifics container is specified.

Note: The maximum number of item specifics that may be defined for a listing has increased from 30 to 45.
For the AddFixedPriceItem family of calls: The same NameValueList schema is used for the ItemSpecifics node, the VariationSpecifics node, and the VariationSpecifcsSet node.

If the listing has variations, any name that you use in the VariationSpecifics and VariationSpecificsSet nodes can't be used in the ItemSpecifics node.
When you list with Item Variations:
  • Specify shared Item Specifics (e.g., Brand) in the ItemSpecifics node.
  • Specify up to five VariationSpecifics in each Variation node.
  • Specify all applicable names with all their supported values in the VariationSpecificSet node.
See the Variation sample in the AddFixedPriceItem call reference for examples.

For PlaceOffer: Required if the item being purchased includes Item Variations.

For AddToWatchList and RemoveFromWatchList: The ItemID value of the multiple-variation listing and the name-value pair to identify each variation in the listing are required.

Note: As of August 30, 2018, California will require sellers to display a Proposition 65 warning on online retail sites if products contain chemicals and/or substances that may impact the health of California buyers. This requirement is applicable to most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. The warning message can be customized by the seller, but should contain the following basic information:
  • The name of at least one listed chemical that prompted the warning
  • Text stating that the product 'can expose you to' the chemical(s) in the product
  • The URL for OEHHA's new Proposition 65 warnings website, which is www.P65Warnings.ca.gov
Unlike standard item specifics that allow a maximum of 65 characters in the Value field, the matching value for the 'California Prop 65 Warning' item specific allows up to 800 characters of text. When a seller passes in this item specific, eBay will automatically insert a warning symbol icon for the listing.



DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationSpecifics
  .NameValueList.Name
string Conditionally Depending on the call and context, this value is either a name of an Item/Variation Specific, or a Parts Compatibility name.

For the AddItem and AddFixedPriceItem families of calls: In the Item.ItemSpecifics context, the value in this field will either be the name of a required/recommended/optional item specific name for the category, or it may be a seller's customized item specific name.

For the AddFixedPriceItem family of calls: In the Compatibility.NameValueList context, this value is a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: For required and recommended item specifics that are returned in the getItemAspectsForCategory method of the Taxonomy API, the seller should pass in the name of these item specifics just as they are shown in the getItemAspectsForCategory response. Similarly, for catalog-enabled categories, the seller should pass in the name of instance aspects just as they are shown in the getItemAspectsForCategory response. Instance aspects are additional details unique to a specific item or listing that a seller can include along with the product aspects that are already defined in the eBay catalog product associated with the listing. Instance aspects common to many catalog-enabled categories include 'Bundle Description' and 'Modification Description'. eBay US sellers who ship to California are required to pass in a 'California Prop 65 Warning' item specific if the item in the listing contains one or more chemicals known to be harmful to human health. This item specific is passed at the listing level for both single-variation and multiple-variation listings. The 'California Prop 65 Warning' is considered an instance specific because it will be retained on the listing even when the seller lists using an eBay catalog product. The 'California Prop 65 Warning' may be applicable in most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. Note: If Brand and MPN (Manufacturer Part Number) are being used to identify product variations in a multiple-variation listing, the Brand must be specified at the item level (ItemSpecifics container) and the MPN for each product variation must be specified at the variation level (VariationSpecifics container). The Brand name must be the same for all variations within a single listing.
Max length: 65.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations.Variation
  .VariationSpecifics
  .NameValueList.Source
ItemSpecificSourceCodeType Conditionally This enumerated value indicates whether the Item Specific was manually input or selected during listing/revision/re-listing time, or if the Item Specific name-value pair came from an eBay catalog product that the listing is associated with.

Applicable values:

CustomCode
(out) Reserved for future use.
ItemSpecific
(out) This enumeration value indicates that the corresponding Item Specific was specified by the seller in Add/Revise/Relist call or flow. In an Add/Revise/Relist API call, Item Specifics for a listing are specified through the ItemSpecifics.NameValueList or VariationSpecifics.NameValueList (for a variation in a multiple-variation listing) containers.
Product
(out) This enumeration value indicates that the corresponding Item Specific was derived from a product in the eBay Catalog, and was automatically picked up by the listing when the seller created, revised, or relisted an item referencing and matching an eBay catalog product through the use of an ePID or GTIN value in the ProductListingDetails container.

Code so that your app gracefully handles any future changes to this list.
Item.Variations.Variation
  .VariationSpecifics
  .NameValueList.Value
string Conditionally,
repeatable: [0..*]
Depending on the call and context, this value is either the value of an Item/Variation Specific, a Parts Compatibility value, or a product identifier.

For the AddItem family of calls: Multiple values can only be specified for an Item Specific if the itemToAspectCardinality field of the getItemAspectsForCategory method shows a value of MULTI. If an item specific only supports a single value, only the first item specific value specified in the request will be used.

For the Compatibility.NameValueList context, this is the corresponding value of a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: The standard maximum length for the value of an item specific is 65, but the maximum allowed length increases for instance aspects such as 'Bundle Description' and 'Modification Description'. For item specifics with max lengths greater than 65, the actual max length will be returned in a corresponding aspectMaxLength field. The maximum allowed length for the new 'California Prop 65 Warning' item specific is 800 characters. For more information about the 'California Prop 65 Warning' item specific, see the ItemSpecifics.NameValueList field description.
Max length: 65 (but longer for some instance aspects, including 800 for 'California Prop 65 Warning').

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations
  .VariationSpecificsSet
NameValueListArrayType Conditionally The set of all variation specific names and values that can be applicable to the listing (at any time in its life cycle). This must include all names and values specified in the VariationSpecifics nodes.

Required when Variations are specified in a new listing, and when you modify the name of a variation by using ModifyNameList. When you modify variation specific names, VariationSpecificsSet must include the new names plus the names that are not changing (but omit the old names),

This set configures variation selection widgets that appear on eBay's View Item page. For example, if you specify Color and Size names in the set, eBay's View Item page displays Color and Size drop-down lists to enable a buyer to choose a variation of interest.

The order in which you specify the names and values also controls the order in which the selection widgets appear on the View Item page. For example, if you specify "Color", then "Size", and then "Sleeve Style" as names, the View Item page shows drop-down lists with those labels in that order. For "Size", if you specify "S", "M", and "L" as values, the View Item page shows the values in that order in the Size drop-down list.

Use the getItemAspectsForCategory method of the Taxonomy API to retrieve recommendations for names and values.

Required when Variations are specified in a new listing (e.g., in AddFixedPriceItem). Also required when you change variation specific names or values in ReviseFixedPriceItem and RelistFixedPriceItem.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See Configure variation-selection widgets for buyers (View Item).

Item.Variations
  .VariationSpecificsSet
  .NameValueList
NameValueListType Conditionally,
repeatable: [0..*]
For the AddItem family of calls: Contains the name and value(s) for an Item Specific. Only required when the ItemSpecifics container is specified.

Note: The maximum number of item specifics that may be defined for a listing has increased from 30 to 45.
For the AddFixedPriceItem family of calls: The same NameValueList schema is used for the ItemSpecifics node, the VariationSpecifics node, and the VariationSpecifcsSet node.

If the listing has variations, any name that you use in the VariationSpecifics and VariationSpecificsSet nodes can't be used in the ItemSpecifics node.
When you list with Item Variations:
  • Specify shared Item Specifics (e.g., Brand) in the ItemSpecifics node.
  • Specify up to five VariationSpecifics in each Variation node.
  • Specify all applicable names with all their supported values in the VariationSpecificSet node.
See the Variation sample in the AddFixedPriceItem call reference for examples.

For PlaceOffer: Required if the item being purchased includes Item Variations.

For AddToWatchList and RemoveFromWatchList: The ItemID value of the multiple-variation listing and the name-value pair to identify each variation in the listing are required.

Note: As of August 30, 2018, California will require sellers to display a Proposition 65 warning on online retail sites if products contain chemicals and/or substances that may impact the health of California buyers. This requirement is applicable to most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. The warning message can be customized by the seller, but should contain the following basic information:
  • The name of at least one listed chemical that prompted the warning
  • Text stating that the product 'can expose you to' the chemical(s) in the product
  • The URL for OEHHA's new Proposition 65 warnings website, which is www.P65Warnings.ca.gov
Unlike standard item specifics that allow a maximum of 65 characters in the Value field, the matching value for the 'California Prop 65 Warning' item specific allows up to 800 characters of text. When a seller passes in this item specific, eBay will automatically insert a warning symbol icon for the listing.



DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations
  .VariationSpecificsSet
  .NameValueList.Name
string Conditionally Depending on the call and context, this value is either a name of an Item/Variation Specific, or a Parts Compatibility name.

For the AddItem and AddFixedPriceItem families of calls: In the Item.ItemSpecifics context, the value in this field will either be the name of a required/recommended/optional item specific name for the category, or it may be a seller's customized item specific name.

For the AddFixedPriceItem family of calls: In the Compatibility.NameValueList context, this value is a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: For required and recommended item specifics that are returned in the getItemAspectsForCategory method of the Taxonomy API, the seller should pass in the name of these item specifics just as they are shown in the getItemAspectsForCategory response. Similarly, for catalog-enabled categories, the seller should pass in the name of instance aspects just as they are shown in the getItemAspectsForCategory response. Instance aspects are additional details unique to a specific item or listing that a seller can include along with the product aspects that are already defined in the eBay catalog product associated with the listing. Instance aspects common to many catalog-enabled categories include 'Bundle Description' and 'Modification Description'. eBay US sellers who ship to California are required to pass in a 'California Prop 65 Warning' item specific if the item in the listing contains one or more chemicals known to be harmful to human health. This item specific is passed at the listing level for both single-variation and multiple-variation listings. The 'California Prop 65 Warning' is considered an instance specific because it will be retained on the listing even when the seller lists using an eBay catalog product. The 'California Prop 65 Warning' may be applicable in most eBay US categories, including eBay Motors, Motors Parts & Accessories, and catalog-enabled categories. Note: If Brand and MPN (Manufacturer Part Number) are being used to identify product variations in a multiple-variation listing, the Brand must be specified at the item level (ItemSpecifics container) and the MPN for each product variation must be specified at the variation level (VariationSpecifics container). The Brand name must be the same for all variations within a single listing.
Max length: 65.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations
  .VariationSpecificsSet
  .NameValueList.Source
ItemSpecificSourceCodeType Conditionally This enumerated value indicates whether the Item Specific was manually input or selected during listing/revision/re-listing time, or if the Item Specific name-value pair came from an eBay catalog product that the listing is associated with.

Applicable values:

CustomCode
(out) Reserved for future use.
ItemSpecific
(out) This enumeration value indicates that the corresponding Item Specific was specified by the seller in Add/Revise/Relist call or flow. In an Add/Revise/Relist API call, Item Specifics for a listing are specified through the ItemSpecifics.NameValueList or VariationSpecifics.NameValueList (for a variation in a multiple-variation listing) containers.
Product
(out) This enumeration value indicates that the corresponding Item Specific was derived from a product in the eBay Catalog, and was automatically picked up by the listing when the seller created, revised, or relisted an item referencing and matching an eBay catalog product through the use of an ePID or GTIN value in the ProductListingDetails container.

Code so that your app gracefully handles any future changes to this list.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.Variations
  .VariationSpecificsSet
  .NameValueList.Value
string Conditionally,
repeatable: [0..*]
Depending on the call and context, this value is either the value of an Item/Variation Specific, a Parts Compatibility value, or a product identifier.

For the AddItem family of calls: Multiple values can only be specified for an Item Specific if the itemToAspectCardinality field of the getItemAspectsForCategory method shows a value of MULTI. If an item specific only supports a single value, only the first item specific value specified in the request will be used.

For the Compatibility.NameValueList context, this is the corresponding value of a motor vehicle aspect such as Year, Make, and Model. A Compatibility.NameValueList container is applicable for motor vehicle parts and accessories listings.

For PlaceOffer: Required if the line item being purchased is an item variation within a multiple-variation listing.

Note: The standard maximum length for the value of an item specific is 65, but the maximum allowed length increases for instance aspects such as 'Bundle Description' and 'Modification Description'. For item specifics with max lengths greater than 65, the actual max length will be returned in a corresponding aspectMaxLength field. The maximum allowed length for the new 'California Prop 65 Warning' item specific is 800 characters. For more information about the 'California Prop 65 Warning' item specific, see the ItemSpecifics.NameValueList field description.
Max length: 65 (but longer for some instance aspects, including 800 for 'California Prop 65 Warning').

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.VATDetails VATDetailsType Conditionally This container is used in an Add/Revise/Relist call to set the VAT (Value-added Tax) percentage rate that will be charged to buyers when an item is purchased from the listing, and to enable Business Seller-related features.

This container is returned in 'Get' calls only if VAT is applicable to the listing, and unless the person making the 'Get' call owns the listing, only the VATPercent field is returned (if applicable). However, Business Seller-related information will be returned to all users in 'Get' calls under the SellerInfo and BusinessSellerDetails containers.

Note: VAT is not applicable to all countries, including the US. Allowed VAT percentage rates can vary by region/country, so sellers should be aware of the rates they are legally required/allowed to charge. Sellers must be registered as Business Sellers on the site they are selling on in order to use the Business Seller-related fields.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.

See:
    Value-added tax (VAT)
    German business features

Item.VATDetails.VATPercent float Conditionally This container is used in an Add/Revise/Relist call to set the VAT (Value-added Tax) percentage rate that will be charged to buyers when an item is purchased from the listing.

VAT is not applicable to all countries, including the US. Allowed VAT percentage rates can vary by region/country, so sellers should be aware of the rates they are legally required/allowed to charge, and they are responsible for charging the correct VAT rate.

If VAT is charged on a listing, the seller can choose to print an invoice for the buyer that shows the item's net price, the VAT percentage rate, the VAT amount, and the total price.

This field is returned in 'Get' calls only if the listing is subject to VAT.

Note: Previously, up to three digits beyond the decimal point were allowed for this float value, but now a seller can include only one digit beyond the decimal point (e.g. 12.3) when using an Add/Revise/Relist call to set this value. An error will occur if more digits beyond the decimal point are specified.
Min: 0.0. Max: 27.0.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.VideoDetails VideoDetailsType Conditionally This container is used if the seller wants to add a video to their listing. At this time, only one video can be added per listing. The video can be uploaded to eBay using the Media API. See the Media API reference documentation for all of the necessary details to upload videos to eBay.

This container will only be returned in GetItem if the listing contains a video, and the seller of the item is the one making the GetItem call.

Note: Videos can only be attached to listings on supported eBay marketplaces and can only be viewed through supported platforms. See Managing videos in the Selling Integration Guide for a full list of supported marketplaces and platforms.
Item.VideoDetails.VideoID string Conditionally,
repeatable: [0..*]
Unique identifier of a video. This identifier is automatically created by eBay once a seller successfully uploads a video to eBay. Videos can be added using the uploadVideo method of the Media API.

In an Add/Revise/Relist call, passing in the ID for the video will add the video to the listing. Although a video can be added to a listing before it is in the LIVE state, the video won't be available for viewing in the listing until it does reach this state. The status of an uploaded video can be retrieved with the getVideo method and seen in the status field of the response.

To replace a video already attached to the listing, the seller could make a Revise or Relist call and just send in a different VideoID value. As long as the VideoID value was valid, the specified video would replace the existing video in the listing.

To remove a video from a listing (and not replace it) using a Revise or Relist call, the seller can include a DeletedField tag in the request and set its value to Item.VideoDetails.VideoID. If the call is successful, the video will be removed from the listing.

Note: eBay will perform a validation check on each specified VideoID value to verify that the video belongs to, and was uploaded by the seller.
The GetItem call can be used by the seller to see which video (if any) is attached to the listing. The VideoDetails container will be returned if the listing contains a video. The VideoDetails container will only be returned to the seller of the item and no one else.
Item.VIN string Conditionally This field displays the Vehicle Identification Number, which is a unique serial number for a motor vehicle.

This field is applicable to listings in US eBay Motors Cars and Trucks (6001), Motorcycles (6024), Commercial Trucks (63732), RVs and Campers (50054), ATVs (6723), Snowmobiles (42595), and UTVs (173665); and to Cars and Trucks listings in CA, CAFR and AU eBay Motors. For vehicle categories that do not use VIN, make a call to the getItemAspectsForCategory method of the Taxonomy API to determine applicable Item Specifics (such as 'Hull ID Number' for Boats).

For the US, CA, and CA-FR eBay Motors categories, required for cars and trucks from model year 1981 and later. (The US developed national standards for VIN values in 1981.)

For the eBay Australia site, required for vehicles from model year 1989 or later. For the eBay Australia site, only appears on the View Item page if you also specify the date of first registration in the listing's Item Specifics.

Appears in the VIN field in the Item Specifics section of eBay's View Item page.

GetItem will return this field for motor vehicle listings where the VIN is defined.

Max length: 17.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.VINLink string Conditionally GetItem will return this field for motor vehicle listings where the VIN is defined.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.VRM string Conditionally Vehicle Registration Mark, which is a unique identifier for a motor vehicle in the UK.

Applicable to listings in UK eBay Motors Cars and Trucks, Motorcycle, and some Powersport categories.

Appears as a VRM field in the Item Specifics section of eBay's View Item page. On the View Item page, the VRM value is masked (i.e., only a portion of the value is shown to users). In the GetItem response, the VRM is only returned if the call is made by the seller (i.e., the AuthToken is associated with the vehicle's seller).

GetItem will return this field for motor vehicle listings where the VRM is defined.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.VRMLink string Conditionally GetItem will return this field for motor vehicle listings where the VRM is defined.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Item.WatchCount long Conditionally The number of watches placed on this item from buyers' My eBay accounts. Specify IncludeWatchCount as true in the request. Returned by GetMyeBaySelling only if greater than 0.

DetailLevel: ItemReturnAttributes, ItemReturnDescription, ReturnAll. Also returned if DetailLevel is not provided on input.
Standard Output Fields  
Ack AckCodeType Always A token representing the application-level acknowledgement code that indicates the response status (e.g., success). The AckCodeType list specifies the possible values for the Ack field.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
Failure
(out) This value indicates that the call request processing failed.
Success
(out) This value indicates that the call request was processed successfully without any issues.
Warning
(out) This value indicates that the call request was successful, but processing was not without any issues. These issues can be checked in the Errors container, that will also be returned when one or more known issues occur with the call request.

(Not all values in AckCodeType apply to this field.)

Code so that your app gracefully handles any future changes to this list.
Build string Always This refers to the specific software build that eBay used when processing the request and generating the response. This includes the version number plus additional information. eBay Developer Support may request the build information when helping you resolve technical issues.
CorrelationID string Conditionally Most Trading API calls support a MessageID element in the request and a CorrelationID element in the response. If you pass in a MessageID in a request, the same value will be returned in the CorrelationID field in the response. Pairing these values can help you track and confirm that a response is returned for every request and to match specific responses to specific requests. If you do not pass a MessageID value in the request, CorrelationID is not returned.

Note: GetCategories is designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, the MessageID and CorrelationID fields aren't applicable. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, MessageID and CorrelationID are applicable.
Errors ErrorType Conditionally,
repeatable: [0..*]
A list of application-level errors (if any) that occurred when eBay processed the request.
Errors.ErrorClassification ErrorClassificationCodeType Conditionally API errors are divided between two classes: system errors and request errors.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
RequestError
(out) An error has occurred either as a result of a problem in the sending application or because the application's end-user has attempted to submit invalid data (or missing data). In these cases, do not retry the request. The problem must be corrected before the request can be made again. If the problem is due to something in the application (such as a missing required field), the application must be changed. If the problem is a result of end-user data, the application must alert the end-user to the problem and provide the means for the end-user to correct the data. Once the problem in the application or data is resolved, resend the request to eBay with the corrected data.
SystemError
(out) Indicates that an error has occurred on the eBay system side, such as a database or server down. An application can retry the request as-is a reasonable number of times (eBay recommends twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, the request may be resent in its original form.

Code so that your app gracefully handles any future changes to this list.
Errors.ErrorCode token Conditionally A unique code that identifies the particular error condition that occurred. Your application can use error codes as identifiers in your customized error-handling algorithms.

See Errors By Number.

Errors.ErrorParameters ErrorParameterType Conditionally,
repeatable: [0..*]
This optional element carries a list of context-specific error variables that indicate details about the error condition. These are useful when multiple instances of ErrorType are returned.
Errors.ErrorParameters
  [ attribute ParamID ]
string Conditionally This optional element carries a list of context-specific error variables that indicate details about the error condition. These are useful when multiple instances of ErrorType are returned.
Errors.ErrorParameters.Value string Conditionally This is the value of the request parameter noted in the ParamID attribute. So, if the ParamID value was ItemID, the value in this field would be the actual value of that ItemID.
Errors.LongMessage string Conditionally A more detailed description of the condition that raised the error.
Errors.SeverityCode SeverityCodeType Conditionally Indicates whether the error is a severe error (causing the request to fail) or an informational error (a warning) that should be communicated to the user.

Applicable values:

CustomCode
(out) Reserved for internal or future use.
Error
(out) The request that triggered the error was not processed successfully. When a serious application-level error occurs, the error is returned instead of the business data.

If the source of the problem is within the application (such as a missing required element), change the application before you retry the request.
  • If the problem is due to end-user input data, please alert the end-user to the problem and provide the means for them to correct the data. Once the problem in the application or data is resolved, you can attempt to re-send the request to eBay.
  • If the source of the problem is on eBay's side, An application can retry the request as-is a reasonable number of times (eBay recommends twice). If the error persists, contact Developer Technical Support. Once the problem has been resolved, the request may be resent in its original form.


See the Error handling section of the Making a Trading API call guide for more information.
Warning
(out) The request was processed successfully, but something occurred that may affect your application or the user. For example, eBay may have changed a value the user sent in. In this case, eBay returns a normal, successful response and also returns the warning.

When a warning occurs, the error is returned in addition to the business data. In this case, you do not need to retry the request (as the original request was successful). However, depending on the cause or nature of the warning, you might need to contact either the end user or eBay to effect a long term solution to the problem to prevent it from reoccurring in the future.

Code so that your app gracefully handles any future changes to this list.
Errors.ShortMessage string Conditionally A brief description of the condition that raised the error.
HardExpirationWarning string Conditionally Expiration date of the user's authentication token. Only returned within the 7-day period prior to a token's expiration. To ensure that user authentication tokens are secure and to help avoid a user's token being compromised, tokens have a limited life span. A token is only valid for a period of time (set by eBay). After this amount of time has passed, the token expires and must be replaced with a new token.
Timestamp dateTime Always This value represents the date and time when eBay processed the request. The time zone of this value is GMT and the format is the ISO 8601 date and time format (YYYY-MM-DDTHH:MM:SS.SSSZ). See the Time Values section in the eBay Features Guide for information about this time format and converting to and from the GMT time zone.

Note: GetCategories and other Trading API calls are designed to retrieve very large sets of metadata that change once a day or less often. To improve performance, these calls return cached responses when you request all available data (with no filters). When this occurs, this time value reflects the time the cached response was created. Thus, this value is not necessarily when the request was processed. However, if you specify an input filter to reduce the amount of data returned, the calls retrieve the latest data (not cached). When this occurs, this time value does reflect when the request was processed.
Version string Always The version of the response payload schema. Indicates the version of the schema that eBay used to process the request. See the Standard Data for All Calls section in the eBay Features Guide for information on using the response version when troubleshooting CustomCode values that appear in the response.



Detail Controls


DetailLevel

The DetailLevel input field influences which call-specific fields may be returned. (All standard output fields are returned regardless of DetailLevel.)

The none column indicates the fields that are returned when you do not specify a DetailLevel.

YThe field is always returned.
(Y)The field is conditionally returned. See the field documentation for clarification of conditions.
-The field is not returned.

Output Field none ItemReturnAttributes ItemReturnCategories ItemReturnDescription ReturnAll
ItemYY-YY
Item.ApplicationData(Y)(Y)-(Y)(Y)
Item.AutoPayYY-YY
Item.BestOfferDetails(Y)(Y)-(Y)(Y)
Item.BestOfferDetails.BestOfferCount(Y)(Y)-(Y)(Y)
Item.BestOfferDetails.BestOfferEnabled(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.AdditionalContactInformation(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.Address(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.Address.FirstName(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.Address.LastName(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.Email(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.Fax(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.LegalInvoice(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.TermsAndConditions(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.TradeRegistrationNumber(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.VATDetails(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.VATDetails.BusinessSeller(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.VATDetails.RestrictedToBusiness(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.VATDetails.VATID(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.VATDetails.VATPercent(Y)(Y)-(Y)(Y)
Item.BusinessSellerDetails.VATDetails.VATSite(Y)(Y)-(Y)(Y)
Item.BuyerGuaranteePrice(Y)(Y)-(Y)(Y)
Item.BuyerProtection(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails.MaximumItemRequirements(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails.MaximumItemRequirements
  .MaximumItemCount
(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails.MaximumItemRequirements
  .MinimumFeedbackScore
(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails.MaximumUnpaidItemStrikesInfo(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails.MaximumUnpaidItemStrikesInfo.Count(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails.MaximumUnpaidItemStrikesInfo.Period(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails.ShipToRegistrationCountry(Y)(Y)-(Y)(Y)
Item.BuyerRequirementDetails.ZeroFeedbackScore(Y)(Y)-(Y)(Y)
Item.BuyerResponsibleForShipping(Y)(Y)-(Y)(Y)
Item.BuyItNowPriceYY-YY
Item.Charity---(Y)(Y)
Item.Charity.CharityID---(Y)(Y)
Item.Charity.CharityName---(Y)(Y)
Item.Charity.DonationPercent---(Y)(Y)
Item.Charity.LogoURL---(Y)(Y)
Item.Charity.Mission---(Y)(Y)
Item.Charity.Status---(Y)(Y)
Item.ConditionDefinition(Y)(Y)-(Y)(Y)
Item.ConditionDisplayName(Y)(Y)-(Y)(Y)
Item.ConditionID(Y)(Y)-(Y)(Y)
Item.CountryYY-YY
Item.CrossBorderTradeYY-YY
Item.CurrencyYY-YY
Item.Description---YY
Item.DisableBuyerRequirements(Y)(Y)-(Y)(Y)
Item.DiscountPriceInfo(Y)(Y)-(Y)(Y)
Item.DiscountPriceInfo.MadeForOutletComparisonPrice(Y)(Y)-(Y)(Y)
Item.DiscountPriceInfo.MinimumAdvertisedPrice(Y)(Y)-(Y)(Y)
Item.DiscountPriceInfo.MinimumAdvertisedPriceExposure(Y)(Y)-(Y)(Y)
Item.DiscountPriceInfo.OriginalRetailPrice(Y)(Y)-(Y)(Y)
Item.DiscountPriceInfo.PricingTreatment(Y)(Y)-(Y)(Y)
Item.DiscountPriceInfo.SoldOffeBay(Y)(Y)-(Y)(Y)
Item.DiscountPriceInfo.SoldOneBay(Y)(Y)-(Y)(Y)
Item.DispatchTimeMax(Y)(Y)-(Y)(Y)
Item.ExtendedProducerResponsibility(Y)(Y)-(Y)(Y)
Item.ExtendedProducerResponsibility.EcoParticipationFee(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails
  .ClassifiedAdContactByEmailEnabled
(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails
  .Hours1AnyTime
(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails.Hours1Days(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails.Hours1From(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails.Hours1To(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails
  .Hours2AnyTime
(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails.Hours2Days(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails.Hours2From(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails.Hours2To(Y)(Y)-(Y)(Y)
Item.ExtendedSellerContactDetails.ContactHoursDetails.TimeZoneID(Y)(Y)-(Y)(Y)
Item.FreeAddedCategory(Y)(Y)-(Y)(Y)
Item.FreeAddedCategory.CategoryID(Y)(Y)-(Y)(Y)
Item.FreeAddedCategory.CategoryName(Y)(Y)-(Y)(Y)
Item.IntegratedMerchantCreditCardEnabled(Y)(Y)-(Y)(Y)
Item.InventoryTrackingMethod(Y)(Y)-(Y)(Y)
Item.IsIntermediatedShippingEligible(Y)(Y)-(Y)(Y)
Item.IsItemEMSEligibleYYYYY
Item.ItemCompatibilityList.Compatibility.NameValueList.Name(Y)(Y)-(Y)(Y)
Item.ItemCompatibilityList.Compatibility.NameValueList.Source(Y)(Y)-(Y)(Y)
Item.ItemCompatibilityList.Compatibility.NameValueList.Value(Y)(Y)-(Y)(Y)
Item.ItemIDYY-YY
Item.ItemPolicyViolation.PolicyID(Y)(Y)-(Y)(Y)
Item.ItemPolicyViolation.PolicyText(Y)(Y)-(Y)(Y)
Item.ItemSpecifics(Y)(Y)-(Y)(Y)
Item.ItemSpecifics.NameValueList(Y)(Y)-(Y)(Y)
Item.ItemSpecifics.NameValueList.Name(Y)(Y)-(Y)(Y)
Item.ItemSpecifics.NameValueList.Source(Y)(Y)-(Y)(Y)
Item.ItemSpecifics.NameValueList.Value(Y)(Y)-(Y)(Y)
Item.ListingDetailsYY-YY
Item.ListingDetails.AdultYY-YY
Item.ListingDetails.BestOfferAutoAcceptPrice(Y)(Y)-(Y)(Y)
Item.ListingDetails.BindingAuctionYY-YY
Item.ListingDetails.BuyItNowAvailable(Y)(Y)-(Y)(Y)
Item.ListingDetails.CheckoutEnabledYY-YY
Item.ListingDetails.ConvertedBuyItNowPriceYY-YY
Item.ListingDetails.ConvertedReservePrice(Y)(Y)-(Y)(Y)
Item.ListingDetails.ConvertedStartPriceYY-YY
Item.ListingDetails.EndTimeYY-YY
Item.ListingDetails.HasPublicMessagesYY-YY
Item.ListingDetails.HasReservePriceYY-YY
Item.ListingDetails.HasUnansweredQuestionsYY-YY
Item.ListingDetails.MinimumBestOfferPrice(Y)(Y)-(Y)(Y)
Item.ListingDetails.RelistedItemID(Y)(Y)-(Y)(Y)
Item.ListingDetails.SecondChanceOriginalItemID(Y)(Y)-(Y)(Y)
Item.ListingDetails.TCROriginalItemID(Y)(Y)-(Y)(Y)
Item.ListingDetails.ViewItemURLYY-YY
Item.ListingDetails.ViewItemURLForNaturalSearch(Y)(Y)-(Y)(Y)
Item.ListingDuration(Y)(Y)-(Y)(Y)
Item.ListingEnhancement(Y)(Y)-(Y)(Y)
Item.ListingSubtype2(Y)(Y)-(Y)(Y)
Item.ListingTypeYY-YY
Item.LocationYY-YY
Item.LocationDefaulted(Y)(Y)-(Y)(Y)
Item.LotSize(Y)(Y)-(Y)(Y)
Item.PaymentAllowedSiteYY-YY
Item.PaymentDetails(Y)(Y)-(Y)(Y)
Item.PaymentDetails.DaysToFullPayment(Y)(Y)-(Y)(Y)
Item.PaymentDetails.DepositAmount(Y)(Y)-(Y)(Y)
Item.PaymentDetails.DepositType(Y)(Y)-(Y)(Y)
Item.PaymentDetails.HoursToDeposit(Y)(Y)-(Y)(Y)
Item.PaymentMethods(Y)(Y)-(Y)(Y)
Item.PayPalEmailAddress(Y)(Y)-(Y)(Y)
Item.PictureDetails(Y)(Y)-(Y)(Y)
Item.PictureDetails.ExtendedPictureDetails.PictureURLs
  .eBayPictureURL
(Y)--(Y)(Y)
Item.PictureDetails.ExtendedPictureDetails.PictureURLs
  .ExternalPictureURL
(Y)--(Y)(Y)
Item.PictureDetails.ExternalPictureURL(Y)--(Y)(Y)
Item.PictureDetails.GalleryType(Y)(Y)-(Y)(Y)
Item.PictureDetails.PictureSource-(Y)--(Y)
Item.PictureDetails.PictureURL(Y)--(Y)(Y)
Item.PostalCodeYY-YY
Item.PrimaryCategoryYY-YY
Item.PrimaryCategory.CategoryIDYY-YY
Item.PrimaryCategory.CategoryNameYY-YY
Item.PrivateListingYY-YY
Item.ProductListingDetails-(Y)--(Y)
Item.ProductListingDetails.BrandMPN-(Y)--(Y)
Item.ProductListingDetails.Copyright-(Y)--(Y)
Item.ProductListingDetails.EAN-(Y)--(Y)
Item.ProductListingDetails.IncludeeBayProductDetails-(Y)--(Y)
Item.ProductListingDetails.IncludeStockPhotoURL-(Y)--(Y)
Item.ProductListingDetails.ISBN-(Y)--(Y)
Item.ProductListingDetails.ProductReferenceID(Y)(Y)-(Y)(Y)
Item.ProductListingDetails.StockPhotoURL-(Y)--(Y)
Item.ProductListingDetails.UPC-(Y)--(Y)
Item.ProductListingDetails.UseStockPhotoURLAsGallery-(Y)--(Y)
Item.ProxyItem(Y)(Y)-(Y)(Y)
Item.QuantityYY-YY
Item.QuantityAvailableHint(Y)(Y)-(Y)(Y)
Item.QuantityThreshold(Y)(Y)-(Y)(Y)
Item.RelistParentID(Y)(Y)-(Y)(Y)
Item.ReservePrice(Y)(Y)-(Y)(Y)
Item.ReturnPolicy(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.Description(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.InternationalRefundOption(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.InternationalReturnsAcceptedOption(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.InternationalReturnsWithinOption(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.InternationalShippingCostPaidByOption(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.Refund(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.RefundOption(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.ReturnsAccepted(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.ReturnsAcceptedOption(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.ReturnsWithin(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.ReturnsWithinOption(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.ShippingCostPaidBy(Y)(Y)-(Y)(Y)
Item.ReturnPolicy.ShippingCostPaidByOption(Y)(Y)-(Y)(Y)
Item.ReviseStatusYY-YY
Item.ReviseStatus.BuyItNowAdded(Y)(Y)-(Y)(Y)
Item.ReviseStatus.BuyItNowLowered(Y)(Y)-(Y)(Y)
Item.ReviseStatus.ItemRevisedYY-YY
Item.ReviseStatus.ReserveLowered(Y)(Y)-(Y)(Y)
Item.ReviseStatus.ReserveRemoved(Y)(Y)-(Y)(Y)
Item.SecondaryCategory(Y)(Y)-(Y)(Y)
Item.SecondaryCategory.CategoryID(Y)(Y)-(Y)(Y)
Item.SecondaryCategory.CategoryName(Y)(Y)-(Y)(Y)
Item.SellerYY-YY
Item.Seller.AboutMePageYY-YY
Item.Seller.eBayGoodStandingYY-YY
Item.Seller.Email(Y)(Y)-(Y)(Y)
Item.Seller.FeedbackPrivateYY-YY
Item.Seller.FeedbackRatingStarYY-YY
Item.Seller.FeedbackScore(Y)(Y)-(Y)(Y)
Item.Seller.IDVerifiedYY-YY
Item.Seller.NewUserYY-YY
Item.Seller.RegistrationAddress----(Y)
Item.Seller.RegistrationAddress.CityName(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.Country(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.CountryName(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.FirstName(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.LastName(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.Name(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.Phone(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.PostalCode(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.Street(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.Street1(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationAddress.Street2(Y)(Y)-(Y)(Y)
Item.Seller.RegistrationDateYY-YY
Item.Seller.SellerInfoYY-YY
Item.Seller.SellerInfo.AllowPaymentEditYY-YY
Item.Seller.SellerInfo.CheckoutEnabledYY-YY
Item.Seller.SellerInfo.CIPBankAccountStoredYY-YY
Item.Seller.SellerInfo.GoodStandingYY-YY
Item.Seller.SellerInfo.QualifiesForB2BVATYY-YY
Item.Seller.SellerInfo.SafePaymentExemptYY-YY
Item.Seller.SellerInfo.SellerBusinessType(Y)(Y)-(Y)(Y)
Item.Seller.SellerInfo.SellerLevelYY-YY
Item.Seller.SellerInfo.StoreOwnerYY-YY
Item.Seller.SellerInfo.StoreURL(Y)(Y)-(Y)(Y)
Item.Seller.SellerInfo.TopRatedSeller(Y)(Y)-(Y)(Y)
Item.Seller.SiteYY-YY
Item.Seller.StatusYY-YY
Item.Seller.UserIDYY-YY
Item.Seller.UserIDChangedYY-YY
Item.Seller.UserIDLastChangedYY-YY
Item.Seller.VATStatusYY-YY
Item.SellerContactDetails(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.CompanyName(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.County(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.FirstName(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.LastName(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.PhoneAreaOrCityCode(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.PhoneCountryCode(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.PhoneCountryPrefix(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.PhoneLocalNumber(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.Street1(Y)(Y)-(Y)(Y)
Item.SellerContactDetails.Street2(Y)(Y)-(Y)(Y)
Item.SellerProfiles(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerPaymentProfile(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerPaymentProfile.PaymentProfileID(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerPaymentProfile.PaymentProfileName(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerReturnProfile(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerReturnProfile.ReturnProfileID(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerReturnProfile.ReturnProfileName(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerShippingProfile(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerShippingProfile.ShippingProfileID(Y)(Y)-(Y)(Y)
Item.SellerProfiles.SellerShippingProfile.ShippingProfileName(Y)(Y)-(Y)(Y)
Item.SellerVacationNote(Y)(Y)-(Y)(Y)
Item.SellingStatusYY-YY
Item.SellingStatus.BidCountYY-YY
Item.SellingStatus.BidIncrementYY-YY
Item.SellingStatus.ConvertedCurrentPrice(Y)(Y)-(Y)(Y)
Item.SellingStatus.CurrentPriceYY-YY
Item.SellingStatus.HighBidder(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.AboutMePage(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.BuyerInfo(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.BuyerInfo.ShippingAddress(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.BuyerInfo.ShippingAddress.Country(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.BuyerInfo.ShippingAddress.FirstName(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.BuyerInfo.ShippingAddress.LastName(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.BuyerInfo.ShippingAddress
  .PostalCode
(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.eBayGoodStanding(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.Email(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.FeedbackPrivate(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.FeedbackRatingStar(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.FeedbackScore(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.IDVerified(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.NewUser(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress----(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.CityName(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.Country(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.CountryName(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.FirstName(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.LastName(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.Name(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.Phone(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.PostalCode(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.Street(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.Street1(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationAddress.Street2(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.RegistrationDateYY-YY
Item.SellingStatus.HighBidder.Site(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.Status(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.UserAnonymizedYY-YY
Item.SellingStatus.HighBidder.UserID(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.UserIDChanged(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.UserIDLastChanged(Y)(Y)-(Y)(Y)
Item.SellingStatus.HighBidder.VATStatus(Y)(Y)-(Y)(Y)
Item.SellingStatus.LeadCount(Y)(Y)-(Y)(Y)
Item.SellingStatus.ListingStatusYY-YY
Item.SellingStatus.MinimumToBidYY-YY
Item.SellingStatus.PromotionalSaleDetails(Y)(Y)-(Y)(Y)
Item.SellingStatus.PromotionalSaleDetails.EndTime(Y)(Y)-(Y)(Y)
Item.SellingStatus.PromotionalSaleDetails.OriginalPrice(Y)(Y)-(Y)(Y)
Item.SellingStatus.PromotionalSaleDetails.StartTime(Y)(Y)-(Y)(Y)
Item.SellingStatus.QuantitySoldYY-YY
Item.SellingStatus.QuantitySoldByPickupInStoreYY-YY
Item.SellingStatus.ReserveMetYY-YY
Item.SellingStatus.SecondChanceEligibleYY-YY
Item.ShippingDetails(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingDiscount(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingDiscount.DiscountName(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingDiscount.DiscountProfile(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingDiscount.DiscountProfile
  .DiscountProfileID
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingDiscount.DiscountProfile
  .DiscountProfileName
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingDiscount.DiscountProfile
  .MappedDiscountProfileID
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingDiscount.DiscountProfile
  .WeightOff
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingRate(Y)(Y)-(Y)(Y)
Item.ShippingDetails.CalculatedShippingRate
  .InternationalPackagingHandlingCosts
YY-YY
Item.ShippingDetails.CalculatedShippingRate
  .PackagingHandlingCosts
YY-YY
Item.ShippingDetails.ExcludeShipToLocation(Y)(Y)-(Y)(Y)
Item.ShippingDetails.FlatShippingDiscount(Y)(Y)-(Y)(Y)
Item.ShippingDetails.FlatShippingDiscount.DiscountName(Y)(Y)-(Y)(Y)
Item.ShippingDetails.FlatShippingDiscount.DiscountProfile(Y)(Y)-(Y)(Y)
Item.ShippingDetails.FlatShippingDiscount.DiscountProfile
  .DiscountProfileID
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.FlatShippingDiscount.DiscountProfile
  .DiscountProfileName
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.FlatShippingDiscount.DiscountProfile
  .EachAdditionalAmount
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.FlatShippingDiscount.DiscountProfile
  .EachAdditionalAmountOff
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.FlatShippingDiscount.DiscountProfile
  .EachAdditionalPercentOff
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.GetItFastYY-YY
Item.ShippingDetails.GlobalShipping(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalCalculatedShippingDiscount(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalCalculatedShippingDiscount
  .DiscountName
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalCalculatedShippingDiscount
  .DiscountProfile
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalCalculatedShippingDiscount
  .DiscountProfile.DiscountProfileID
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalCalculatedShippingDiscount
  .DiscountProfile.DiscountProfileName
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalCalculatedShippingDiscount
  .DiscountProfile.MappedDiscountProfileID
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalCalculatedShippingDiscount
  .DiscountProfile.WeightOff
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalFlatShippingDiscount(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalFlatShippingDiscount
  .DiscountName
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalFlatShippingDiscount
  .DiscountProfile
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalFlatShippingDiscount
  .DiscountProfile.DiscountProfileID
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalFlatShippingDiscount
  .DiscountProfile.DiscountProfileName
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalFlatShippingDiscount
  .DiscountProfile.EachAdditionalAmount
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalFlatShippingDiscount
  .DiscountProfile.EachAdditionalAmountOff
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalFlatShippingDiscount
  .DiscountProfile.EachAdditionalPercentOff
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalPromotionalShippingDiscount(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalShippingDiscountProfileID(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalShippingServiceOption(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalShippingServiceOption
  .ShippingService
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalShippingServiceOption
  .ShippingServiceAdditionalCost
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalShippingServiceOption
  .ShippingServiceCost
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalShippingServiceOption
  .ShippingServicePriority
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.InternationalShippingServiceOption
  .ShipToLocation
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.PromotionalShippingDiscount(Y)(Y)-(Y)(Y)
Item.ShippingDetails.PromotionalShippingDiscountDetails(Y)(Y)-(Y)(Y)
Item.ShippingDetails.PromotionalShippingDiscountDetails
  .DiscountName
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.PromotionalShippingDiscountDetails.ItemCount(Y)(Y)-(Y)(Y)
Item.ShippingDetails.PromotionalShippingDiscountDetails
  .OrderAmount
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.PromotionalShippingDiscountDetails
  .ShippingCost
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.RateTableDetails(Y)(Y)-(Y)(Y)
Item.ShippingDetails.RateTableDetails.DomesticRateTable(Y)(Y)-(Y)(Y)
Item.ShippingDetails.RateTableDetails.DomesticRateTableId(Y)(Y)-(Y)(Y)
Item.ShippingDetails.RateTableDetails.InternationalRateTable(Y)(Y)-(Y)(Y)
Item.ShippingDetails.RateTableDetails.InternationalRateTableId(Y)(Y)-(Y)(Y)
Item.ShippingDetails.SalesTax(Y)(Y)-(Y)(Y)
Item.ShippingDetails.SalesTax.SalesTaxPercent(Y)(Y)-(Y)(Y)
Item.ShippingDetails.SalesTax.SalesTaxState(Y)(Y)-(Y)(Y)
Item.ShippingDetails.SalesTax.ShippingIncludedInTax(Y)(Y)-(Y)(Y)
Item.ShippingDetails.SellerExcludeShipToLocationsPreference(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingDiscountProfileID(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingServiceOptionsYY-YY
Item.ShippingDetails.ShippingServiceOptions.ExpeditedService(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingServiceOptions.FreeShipping(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingServiceOptions.ShippingService(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingServiceOptions
  .ShippingServiceAdditionalCost
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingServiceOptions.ShippingServiceCost(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingServiceOptions
  .ShippingServicePriority
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingServiceOptions.ShippingTimeMax(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingServiceOptions.ShippingTimeMin(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ShippingType(Y)(Y)--(Y)
Item.ShippingDetails.TaxTable---(Y)(Y)
Item.ShippingDetails.TaxTable.TaxJurisdiction(Y)(Y)-(Y)(Y)
Item.ShippingDetails.TaxTable.TaxJurisdiction.JurisdictionID(Y)(Y)-(Y)(Y)
Item.ShippingDetails.TaxTable.TaxJurisdiction.SalesTaxPercent(Y)(Y)-(Y)(Y)
Item.ShippingDetails.TaxTable.TaxJurisdiction
  .ShippingIncludedInTax
(Y)(Y)-(Y)(Y)
Item.ShippingDetails.ThirdPartyCheckoutYY-YY
Item.ShippingPackageDetails.PackageDepth(Y)(Y)-(Y)(Y)
Item.ShippingPackageDetails.PackageLength(Y)(Y)-(Y)(Y)
Item.ShippingPackageDetails.PackageWidth(Y)(Y)-(Y)(Y)
Item.ShippingPackageDetails.ShippingIrregular(Y)(Y)-(Y)(Y)
Item.ShippingPackageDetails.ShippingPackage(Y)(Y)-(Y)(Y)
Item.ShippingPackageDetails.WeightMajor(Y)(Y)-(Y)(Y)
Item.ShippingPackageDetails.WeightMinor(Y)(Y)-(Y)(Y)
Item.ShipToLocationsYY-YY
Item.SiteYY-YY
Item.SKU(Y)(Y)-(Y)(Y)
Item.StartPriceYY-YY
Item.Storefront(Y)(Y)-(Y)(Y)
Item.Storefront.StoreCategory2ID(Y)(Y)-(Y)(Y)
Item.Storefront.StoreCategoryID(Y)(Y)-(Y)(Y)
Item.Storefront.StoreURL(Y)(Y)-(Y)(Y)
Item.SubTitle(Y)(Y)-(Y)(Y)
Item.TaxCategory----(Y)
Item.TimeLeftYY-YY
Item.TitleYY-YY
Item.UnitInfo(Y)(Y)-(Y)(Y)
Item.UUID(Y)(Y)-(Y)(Y)
Item.Variations(Y)(Y)-(Y)(Y)
Item.Variations.Pictures(Y)(Y)-(Y)(Y)
Item.Variations.Pictures.VariationSpecificName(Y)(Y)-(Y)(Y)
Item.Variations.Pictures.VariationSpecificPictureSet(Y)(Y)-(Y)(Y)
Item.Variations.Pictures.VariationSpecificPictureSet
  .ExtendedPictureDetails.PictureURLs.eBayPictureURL
(Y)--(Y)(Y)
Item.Variations.Pictures.VariationSpecificPictureSet
  .ExtendedPictureDetails.PictureURLs.ExternalPictureURL
(Y)--(Y)(Y)
Item.Variations.Pictures.VariationSpecificPictureSet.PictureURL(Y)(Y)-(Y)(Y)
Item.Variations.Pictures.VariationSpecificPictureSet
  .VariationSpecificValue
(Y)(Y)-(Y)(Y)
Item.Variations.Variation(Y)(Y)-(Y)(Y)
Item.Variations.Variation.DiscountPriceInfo(Y)(Y)-(Y)(Y)
Item.Variations.Variation.DiscountPriceInfo
  .MadeForOutletComparisonPrice
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.DiscountPriceInfo
  .MinimumAdvertisedPrice
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.DiscountPriceInfo
  .MinimumAdvertisedPriceExposure
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.DiscountPriceInfo.OriginalRetailPrice(Y)(Y)-(Y)(Y)
Item.Variations.Variation.DiscountPriceInfo.PricingTreatment(Y)(Y)-(Y)(Y)
Item.Variations.Variation.DiscountPriceInfo.SoldOffeBay(Y)(Y)-(Y)(Y)
Item.Variations.Variation.DiscountPriceInfo.SoldOneBay(Y)(Y)-(Y)(Y)
Item.Variations.Variation.Quantity(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.AboutMePage(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.BuyerInfo(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.BuyerInfo
  .ShippingAddress
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.BuyerInfo
  .ShippingAddress.Country
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.BuyerInfo
  .ShippingAddress.FirstName
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.BuyerInfo
  .ShippingAddress.LastName
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.BuyerInfo
  .ShippingAddress.PostalCode
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .eBayGoodStanding
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.Email(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .FeedbackPrivate
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .FeedbackRatingStar
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.FeedbackScore(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.IDVerified(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.NewUser(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress
----(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.CityName
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.Country
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.CountryName
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.FirstName
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.LastName
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.Name
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.Phone
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.PostalCode
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.Street
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.Street1
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationAddress.Street2
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .RegistrationDate
YY-YY
Item.Variations.Variation.SellingStatus.HighBidder.Site(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.Status(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.UserAnonymizedYY-YY
Item.Variations.Variation.SellingStatus.HighBidder.UserID(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.UserIDChanged(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder
  .UserIDLastChanged
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.HighBidder.VATStatus(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.PromotionalSaleDetails
  .EndTime
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.PromotionalSaleDetails
  .OriginalPrice
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.PromotionalSaleDetails
  .StartTime
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.SellingStatus.QuantitySoldYY-YY
Item.Variations.Variation.SellingStatus
  .QuantitySoldByPickupInStore
YY-YY
Item.Variations.Variation.SKU(Y)(Y)-(Y)(Y)
Item.Variations.Variation.StartPrice(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationExtendedProducerResponsibility(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationExtendedProducerResponsibility
  .EcoParticipationFee
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationProductListingDetails(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationProductListingDetails.EAN(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationProductListingDetails.ISBN(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationProductListingDetails
  .ProductReferenceID
(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationProductListingDetails.UPC(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationSpecifics(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationSpecifics.NameValueList(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationSpecifics.NameValueList.Name(Y)(Y)-(Y)(Y)
Item.Variations.Variation.VariationSpecifics.NameValueList.Value(Y)(Y)-(Y)(Y)
Item.Variations.VariationSpecificsSet(Y)(Y)-(Y)(Y)
Item.Variations.VariationSpecificsSet.NameValueList(Y)(Y)-(Y)(Y)
Item.Variations.VariationSpecificsSet.NameValueList.Name(Y)(Y)-(Y)(Y)
Item.Variations.VariationSpecificsSet.NameValueList.Source(Y)(Y)-(Y)(Y)
Item.Variations.VariationSpecificsSet.NameValueList.Value(Y)(Y)-(Y)(Y)
Item.VATDetails(Y)(Y)-(Y)(Y)
Item.VATDetails.VATPercent(Y)(Y)-(Y)(Y)
Item.VIN(Y)(Y)-(Y)(Y)
Item.VINLink(Y)(Y)-(Y)(Y)
Item.VRM(Y)(Y)-(Y)(Y)
Item.VRMLink(Y)(Y)-(Y)(Y)
Item.WatchCount(Y)(Y)-(Y)(Y)



Samples

New to making API calls? Please see Making a Call.

Note: Some item IDs, user IDs, or other data in these samples might no longer be active on eBay. If necessary, you can substitute current eBay data in your requests.

Available samples:

Sample: Basic Call

Returns the basic details of a fixed-price item listed on the eBay US site.

Description

There are a several uses for the GetItem call. After listing an item, a seller will often use this call to ensure that the details of their listing are as desired. A buyer can also use GetItem to inspect the details of an item before they bid on it.

In this sample, z********z just listed a Harry Potter book, and wants to make sure the details are correct. Using the ItemID returned from the AddItem call, she can use GetItem to look at her recent listing.

Input

The key input for this call scenario is the ItemID to identify the listing.

XML format.

<?xml version="1.0" encoding="utf-8"?>
<GetItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <RequesterCredentials>
    <eBayAuthToken>A*******3</eBayAuthToken>
  </RequesterCredentials>
  <ItemID>2********6</ItemID>
</GetItemRequest>

Output

A successful response returns all the basic details of the listing.

XML format.
<?xml version="1.0" encoding="UTF-8"?>
<GetItemResponse 
  xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2022-04-14T22:59:52.417Z</Timestamp>
  <Ack>Success</Ack>
  <Version>1193</Version>
  <Build>E1193_CORE_API_19146280_R1</Build>
  <Item>
    <AutoPay>true</AutoPay>
    <BuyerProtection>ItemIneligible</BuyerProtection>
    <BuyItNowPrice currencyID="USD">0.0</BuyItNowPrice>
    <Country>US</Country>
    <Currency>USD</Currency>
    <GiftIcon>0</GiftIcon>
    <HitCounter>NoHitCounter</HitCounter>
    <ItemID>2********6</ItemID>
    <ListingDetails>
      <Adult>false</Adult>
      <BindingAuction>false</BindingAuction>
      <CheckoutEnabled>true</CheckoutEnabled>
      <HasReservePrice>false</HasReservePrice>
      <StartTime>2022-01-17T23:50:23.000Z</StartTime>
      <EndTime>2022-04-17T23:50:23.000Z</EndTime>
      <ViewItemURL>https://www.ebay.com/itm/Harry-Potter-and-Prisoner-Azkaban-Hufflepuff-Edition-New-Free-Shipping-/2********6</ViewItemURL>
      <HasUnansweredQuestions>false</HasUnansweredQuestions>
      <HasPublicMessages>false</HasPublicMessages>
      <ViewItemURLForNaturalSearch>https://www.ebay.com/itm/Harry-Potter-and-Prisoner-Azkaban-Hufflepuff-Edition-New-Free-Shipping-/2********6</ViewItemURLForNaturalSearch>
    </ListingDetails>
    <ListingDuration>GTC</ListingDuration>
    <ListingType>FixedPriceItem</ListingType>
    <Location>Arlington, Texas</Location>
    <PrimaryCategory>
      <CategoryID>261186</CategoryID>
      <CategoryName>Books & Magazines:Books</CategoryName>
    </PrimaryCategory>
    <PrivateListing>false</PrivateListing>
    <Quantity>1</Quantity>
    <ReviseStatus>
      <ItemRevised>true</ItemRevised>
    </ReviseStatus>
    <Seller>
      <AboutMePage>false</AboutMePage>
      <Email>Invalid Request</Email>
      <FeedbackScore>5439</FeedbackScore>
      <PositiveFeedbackPercent>99.6</PositiveFeedbackPercent>
      <eBayGoodStanding>true</eBayGoodStanding>
      <NewUser>false</NewUser>
      <RegistrationDate>1998-01-20T06:16:32.000Z</RegistrationDate>
      <Site>US</Site>
      <UserID>z********z</UserID>
      <VATStatus>NoVATTax</VATStatus>
      <SellerInfo>
        <AllowPaymentEdit>false</AllowPaymentEdit>
        <CheckoutEnabled>true</CheckoutEnabled>
        <CIPBankAccountStored>false</CIPBankAccountStored>
        <GoodStanding>true</GoodStanding>
        <LiveAuctionAuthorized>false</LiveAuctionAuthorized>
        <QualifiesForB2BVAT>false</QualifiesForB2BVAT>
        <StoreOwner>true</StoreOwner>
        <StoreURL>https://stores.ebay.com/r********a</StoreURL>
        <TopRatedSeller>true</TopRatedSeller>
      </SellerInfo>
      <MotorsDealer>false</MotorsDealer>
    </Seller>
    <SellingStatus>
      <BidCount>0</BidCount>
      <BidIncrement currencyID="USD">0.0</BidIncrement>
      <ConvertedCurrentPrice currencyID="USD">13.77</ConvertedCurrentPrice>
      <CurrentPrice currencyID="USD">13.77</CurrentPrice>
      <MinimumToBid currencyID="USD">13.77</MinimumToBid>
      <QuantitySold>0</QuantitySold>
      <ReserveMet>true</ReserveMet>
      <SecondChanceEligible>false</SecondChanceEligible>
      <ListingStatus>Active</ListingStatus>
      <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
    </SellingStatus>
    <ShippingDetails>
      <ApplyShippingDiscount>false</ApplyShippingDiscount>
      <CalculatedShippingRate>
        <OriginatingPostalCode>7***6</OriginatingPostalCode>
        <PackageDepth measurementSystem="English" unit="inches">4</PackageDepth>
        <PackageLength measurementSystem="English" unit="inches">7</PackageLength>
        <PackageWidth measurementSystem="English" unit="inches">4</PackageWidth>
        <PackagingHandlingCosts currencyID="USD">0.0</PackagingHandlingCosts>
        <ShippingIrregular>false</ShippingIrregular>
        <ShippingPackage>PackageThickEnvelope</ShippingPackage>
        <WeightMajor measurementSystem="English" unit="lbs">1</WeightMajor>
        <WeightMinor measurementSystem="English" unit="oz">0</WeightMinor>
      </CalculatedShippingRate>
      <SalesTax>
        <SalesTaxPercent>0.0</SalesTaxPercent>
        <ShippingIncludedInTax>false</ShippingIncludedInTax>
      </SalesTax>
      <ShippingServiceOptions>
        <ShippingService>USPSMedia</ShippingService>
        <ShippingServicePriority>1</ShippingServicePriority>
        <ExpeditedService>false</ExpeditedService>
        <ShippingTimeMin>2</ShippingTimeMin>
        <ShippingTimeMax>8</ShippingTimeMax>
        <FreeShipping>true</FreeShipping>
      </ShippingServiceOptions>
      <ShippingType>Calculated</ShippingType>
      <ThirdPartyCheckout>false</ThirdPartyCheckout>
      <ShippingDiscountProfileID>0</ShippingDiscountProfileID>
      <InternationalShippingDiscountProfileID>0</InternationalShippingDiscountProfileID>
      <SellerExcludeShipToLocationsPreference>true</SellerExcludeShipToLocationsPreference>
    </ShippingDetails>
    <ShipToLocations>US</ShipToLocations>
    <Site>US</Site>
    <StartPrice currencyID="USD">13.77</StartPrice>
    <Storefront>
      <StoreCategoryID>1</StoreCategoryID>
      <StoreCategory2ID>0</StoreCategory2ID>
      <StoreURL>https://stores.ebay.com/r********a</StoreURL>
    </Storefront>
    <TimeLeft>P3DT50M31S</TimeLeft>
    <Title>Harry Potter and the Prisoner of Azkaban H********g</Title>
    <HitCount>227</HitCount>
    <LocationDefaulted>true</LocationDefaulted>
    <GetItFast>false</GetItFast>
    <BuyerResponsibleForShipping>false</BuyerResponsibleForShipping>
    <PostalCode>760**</PostalCode>
    <PictureDetails>
      <GalleryType>Gallery</GalleryType>
      <PhotoDisplay>PicturePack</PhotoDisplay>
      <PictureURL>https://i.ebayimg.com/00/s/M********w/z/F********~/$_12.JPG?set_id=8********F</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/M********w/z/V********B/$_12.JPG?set_id=8********F</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/M********w/z/U********D/$_12.JPG?set_id=8********F</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/M********w/z/8********F/$_12.JPG?set_id=8********F</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/M********w/z/Z********I/$_12.JPG?set_id=8********F</PictureURL>
    </PictureDetails>
    <DispatchTimeMax>1</DispatchTimeMax>
    <ProxyItem>false</ProxyItem>
    <BuyerGuaranteePrice currencyID="USD">20000.0</BuyerGuaranteePrice>
    <IntangibleItem>false</IntangibleItem>
    <ReturnPolicy>
      <RefundOption>MoneyBack</RefundOption>
      <Refund>Money Back</Refund>
      <ReturnsWithinOption>Days_30</ReturnsWithinOption>
      <ReturnsWithin>30 Days</ReturnsWithin>
      <ReturnsAcceptedOption>ReturnsAccepted</ReturnsAcceptedOption>
      <ReturnsAccepted>Returns Accepted</ReturnsAccepted>
      <ShippingCostPaidByOption>Buyer</ShippingCostPaidByOption>
      <ShippingCostPaidBy>Buyer</ShippingCostPaidBy>
      <InternationalReturnsAcceptedOption>ReturnsNotAccepted</InternationalReturnsAcceptedOption>
    </ReturnPolicy>
    <ConditionID>1000</ConditionID>
    <ConditionDisplayName>Brand New</ConditionDisplayName>
    <PostCheckoutExperienceEnabled>false</PostCheckoutExperienceEnabled>
    <ShippingPackageDetails>
      <PackageDepth measurementSystem="English" unit="inches">4</PackageDepth>
      <PackageLength measurementSystem="English" unit="inches">7</PackageLength>
      <PackageWidth measurementSystem="English" unit="inches">4</PackageWidth>
      <ShippingIrregular>false</ShippingIrregular>
      <ShippingPackage>PackageThickEnvelope</ShippingPackage>
      <WeightMajor measurementSystem="English" unit="lbs">1</WeightMajor>
      <WeightMinor measurementSystem="English" unit="oz">0</WeightMinor>
    </ShippingPackageDetails>
    <HideFromSearch>false</HideFromSearch>
    <eBayPlus>false</eBayPlus>
    <eBayPlusEligible>false</eBayPlusEligible>
    <IsSecureDescription>true</IsSecureDescription>
  </Item>
</GetItemResponse>

Back to list of samples

Sample: Product Details and Item Condition

Returns an item with product details and ConditionID.

Description

The seller h**********d listed a new Apple laptop on the eBay US site. They used a UPC to fill in the product details. Based on the UPC, eBay found a product in our catalog and used it to pre-fill the listing's item specifics, provide a stock photo, and display other details on the eBay site.

Input

The seller wants to double-check the item specifics that were pre-filled, so they include the IncludeItemSpecifics field and set to true. They also want to see details on the catalog product the listing is based on, so they include the DetailLevel field and set the value to ReturnAll.

XML format.

<?xml version="1.0" encoding="utf-8"?>
<GetItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <DetailLevel>ReturnAll</DetailLevel>
  <ItemID>1**********2</ItemID>
  <IncludeItemSpecifics>true</IncludeItemSpecifics>
  <RequesterCredentials>
    <eBayAuthToken>Y***********E</eBayAuthToken>
  </RequesterCredentials>
</GetItemRequest>

Output

The response includes detailed information about the listing, including catalog product details in the ProductListingDetails container, defined item specifics for the listing in the ItemSpecifics container, and the item condition in the ConditionDisplayName field.

XML format.
<?xml version="1.0" encoding="UTF-8"?>
<GetItemResponse 
  xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2022-04-14T23:27:06.981Z</Timestamp>
  <Ack>Success</Ack>
  <Version>1193</Version>
  <Build>E1193_CORE_API_19146280_R1</Build>
  <Item>
    <AutoPay>true</AutoPay>
    <BuyerProtection>ItemIneligible</BuyerProtection>
    <BuyItNowPrice currencyID="USD">0.0</BuyItNowPrice>
    <Country>US</Country>
    <Currency>USD</Currency>
    <GiftIcon>0</GiftIcon>
    <HitCounter>NoHitCounter</HitCounter>
    <ItemID>1**********2</ItemID>
    <ListingDetails>
      <Adult>false</Adult>
      <BindingAuction>false</BindingAuction>
      <CheckoutEnabled>true</CheckoutEnabled>
      <HasReservePrice>false</HasReservePrice>
      <StartTime>2022-03-11T18:55:15.000Z</StartTime>
      <EndTime>2022-05-11T18:55:15.000Z</EndTime>
      <ViewItemURL>https://www.ebay.com/itm/Apple-MacBook-Pro-13-3-1TB-SSD-Intel-Core-i5-10th-Gen-2-00-GHz-16GB-RAM-/1**********2</ViewItemURL>
      <HasUnansweredQuestions>true</HasUnansweredQuestions>
      <HasPublicMessages>false</HasPublicMessages>
      <ViewItemURLForNaturalSearch>https://www.ebay.com/itm/Apple-MacBook-Pro-13-3-1TB-SSD-Intel-Core-i5-10th-Gen-2-00-GHz-16GB-RAM-/1**********2</ViewItemURLForNaturalSearch>
    </ListingDetails>
    <ListingDuration>GTC</ListingDuration>
    <ListingType>FixedPriceItem</ListingType>
    <Location>O**********a</Location>
    <PrimaryCategory>
      <CategoryID>111422</CategoryID>
      <CategoryName>Computers/Tablets & Networking:Laptops & Netbooks:Apple Laptops</CategoryName>
    </PrimaryCategory>
    <PrivateListing>false</PrivateListing>
    <ProductListingDetails>
      <IncludeStockPhotoURL>true</IncludeStockPhotoURL>
      <IncludePrefilledItemInformation>true</IncludePrefilledItemInformation>
      <UseStockPhotoURLAsGallery>false</UseStockPhotoURLAsGallery>
      <StockPhotoURL>https://i.ebayimg.com/images/g/N**********t/s-l640.jpg</StockPhotoURL>
      <ProductReferenceID>2321352502</ProductReferenceID>
      <UPC>0194252545911</UPC>
      <BrandMPN>
        <Brand>Apple</Brand>
        <MPN>MWP52LLA</MPN>
      </BrandMPN>
      <IncludeeBayProductDetails>true</IncludeeBayProductDetails>
    </ProductListingDetails>
    <Quantity>35</Quantity>
    <ReviseStatus>
      <ItemRevised>true</ItemRevised>
    </ReviseStatus>
    <Seller>
      <AboutMePage>false</AboutMePage>
      <Email>Invalid Request</Email>
      <FeedbackScore>6137</FeedbackScore>
      <PositiveFeedbackPercent>97.7</PositiveFeedbackPercent>
      <eBayGoodStanding>true</eBayGoodStanding>
      <NewUser>false</NewUser>
      <RegistrationDate>2006-10-26T01:03:51.000Z</RegistrationDate>
      <Site>US</Site>
      <UserID>h**********d</UserID>
      <VATStatus>NoVATTax</VATStatus>
      <SellerInfo>
        <AllowPaymentEdit>false</AllowPaymentEdit>
        <CheckoutEnabled>true</CheckoutEnabled>
        <CIPBankAccountStored>false</CIPBankAccountStored>
        <GoodStanding>true</GoodStanding>
        <LiveAuctionAuthorized>false</LiveAuctionAuthorized>
        <QualifiesForB2BVAT>false</QualifiesForB2BVAT>
        <StoreOwner>true</StoreOwner>
        <StoreURL>https://stores.ebay.com/h**********d</StoreURL>
        <TopRatedSeller>true</TopRatedSeller>
      </SellerInfo>
      <MotorsDealer>false</MotorsDealer>
    </Seller>
    <SellingStatus>
      <BidCount>0</BidCount>
      <BidIncrement currencyID="USD">0.0</BidIncrement>
      <ConvertedCurrentPrice currencyID="USD">1089.99</ConvertedCurrentPrice>
      <CurrentPrice currencyID="USD">1089.99</CurrentPrice>
      <MinimumToBid currencyID="USD">1089.99</MinimumToBid>
      <QuantitySold>27</QuantitySold>
      <ReserveMet>true</ReserveMet>
      <SecondChanceEligible>false</SecondChanceEligible>
      <ListingStatus>Active</ListingStatus>
      <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
    </SellingStatus>
    <ShippingDetails>
      <ApplyShippingDiscount>false</ApplyShippingDiscount>
      <CalculatedShippingRate>
        <WeightMajor measurementSystem="English" unit="lbs">6</WeightMajor>
        <WeightMinor measurementSystem="English" unit="oz">0</WeightMinor>
      </CalculatedShippingRate>
      <SalesTax>
        <SalesTaxPercent>6.0</SalesTaxPercent>
        <SalesTaxState>FL</SalesTaxState>
        <ShippingIncludedInTax>false</ShippingIncludedInTax>
      </SalesTax>
      <ShippingServiceOptions>
        <ShippingService>UPSGround</ShippingService>
        <ShippingServiceCost currencyID="USD">0.0</ShippingServiceCost>
        <ShippingServiceAdditionalCost currencyID="USD">0.0</ShippingServiceAdditionalCost>
        <ShippingServicePriority>1</ShippingServicePriority>
        <ExpeditedService>false</ExpeditedService>
        <ShippingTimeMin>1</ShippingTimeMin>
        <ShippingTimeMax>5</ShippingTimeMax>
        <FreeShipping>true</FreeShipping>
      </ShippingServiceOptions>
      <ShippingServiceOptions>
        <ShippingService>USPSPriority</ShippingService>
        <ShippingServiceCost currencyID="USD">20.0</ShippingServiceCost>
        <ShippingServiceAdditionalCost currencyID="USD">5.0</ShippingServiceAdditionalCost>
        <ShippingServicePriority>2</ShippingServicePriority>
        <ExpeditedService>false</ExpeditedService>
        <ShippingTimeMin>2</ShippingTimeMin>
        <ShippingTimeMax>5</ShippingTimeMax>
      </ShippingServiceOptions>
      <ShippingType>Flat</ShippingType>
      <ThirdPartyCheckout>false</ThirdPartyCheckout>
      <ShippingDiscountProfileID>0</ShippingDiscountProfileID>
      <InternationalShippingDiscountProfileID>0</InternationalShippingDiscountProfileID>
      <ExcludeShipToLocation>Europe</ExcludeShipToLocation>
      <ExcludeShipToLocation>RU</ExcludeShipToLocation>
      <SellerExcludeShipToLocationsPreference>false</SellerExcludeShipToLocationsPreference>
    </ShippingDetails>
    <ShipToLocations>US</ShipToLocations>
    <Site>US</Site>
    <StartPrice currencyID="USD">1089.99</StartPrice>
    <Storefront>
      <StoreCategoryID>1</StoreCategoryID>
      <StoreCategory2ID>0</StoreCategory2ID>
      <StoreURL>https://stores.ebay.com/h**********d</StoreURL>
    </Storefront>
    <TimeLeft>P26DT19H28M9S</TimeLeft>
    <Title>Apple MacBook Pro 13.3" </Title>
    <HitCount>4036</HitCount>
    <LocationDefaulted>true</LocationDefaulted>
    <GetItFast>false</GetItFast>
    <BuyerResponsibleForShipping>false</BuyerResponsibleForShipping>
    <PostalCode>330**</PostalCode>
    <PictureDetails>
      <GalleryType>Gallery</GalleryType>
      <PhotoDisplay>PicturePack</PhotoDisplay>
      <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/C**********i/$_57.JPG?set_id=8**********7</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/O**********=/z/4**********d/$_57.PNG?set_id=8**********7</PictureURL>
    </PictureDetails>
    <DispatchTimeMax>1</DispatchTimeMax>
    <ProxyItem>false</ProxyItem>
    <ItemSpecifics>
      <NameValueList>
        <Name>Model</Name>
        <Value>Core i5 10th Gen.</Value>
        <Source>ItemSpecific</Source>
      </NameValueList>
      <NameValueList>
        <Name>Hard Drive Capacity</Name>
        <Value>1 TB</Value>
        <Source>ItemSpecific</Source>
      </NameValueList>
      <NameValueList>
        <Name>MPN</Name>
        <Value>MWP52LL/A</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Item Length</Name>
        <Value>8.36 inches</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Most Suitable For</Name>
        <Value>Casual Computing</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>SSD Capacity</Name>
        <Value>1 TB</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>GPU</Name>
        <Value>Intel Iris Plus Graphics</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Item Height</Name>
        <Value>0.61 inch</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Operating System</Name>
        <Value>Mac OS 10.15, Catalina</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Item Width</Name>
        <Value>11.97 inches</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Color</Name>
        <Value>Gray</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Processor Speed</Name>
        <Value>2.00 GHz</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Brand</Name>
        <Value>Apple</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Connectivity</Name>
        <Value>VGA</Value>
        <Value>USB-C Thunderbolt 3</Value>
        <Value>DisplayPort</Value>
        <Value>HDMI</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Storage Type</Name>
        <Value>SSD (Solid State Drive)</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Processor</Name>
        <Value>Intel Core i5 10th Gen.</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Graphics Processing Type</Name>
        <Value>Integrated/On-Board Graphics</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Release Year</Name>
        <Value>2020</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Features</Name>
        <Value>Retina display with True Tone</Value>
        <Value>Touch Bar</Value>
        <Value>Backlit Magic Keyboard</Value>
        <Value>Touch ID</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Screen Size</Name>
        <Value>13.3 in</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>RAM Size</Name>
        <Value>16 GB</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Series</Name>
        <Value>MacBook Pro</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Maximum Resolution</Name>
        <Value>2560 x 1600</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>Item Weight</Name>
        <Value>3.1 pounds</Value>
        <Source>Product</Source>
      </NameValueList>
      <NameValueList>
        <Name>MPN</Name>
        <Value>MWP52LLA</Value>
        <Source>Product</Source>
      </NameValueList>
    </ItemSpecifics>
    <BuyerGuaranteePrice currencyID="USD">20000.0</BuyerGuaranteePrice>
    <IntangibleItem>false</IntangibleItem>
    <ReturnPolicy>
      <ReturnsAcceptedOption>ReturnsNotAccepted</ReturnsAcceptedOption>
      <ReturnsAccepted>No returns accepted</ReturnsAccepted>
      <InternationalReturnsAcceptedOption>ReturnsNotAccepted</InternationalReturnsAcceptedOption>
    </ReturnPolicy>
    <ConditionID>1000</ConditionID>
    <ConditionDisplayName>New</ConditionDisplayName>
    <PostCheckoutExperienceEnabled>false</PostCheckoutExperienceEnabled>
    <ShippingServiceCostOverrideList>
      <ShippingServiceCostOverride>
        <ShippingServicePriority>1</ShippingServicePriority>
        <ShippingServiceType>Domestic</ShippingServiceType>
        <ShippingServiceCost currencyID="USD">0.0</ShippingServiceCost>
        <ShippingServiceAdditionalCost currencyID="USD">0.0</ShippingServiceAdditionalCost>
      </ShippingServiceCostOverride>
      <ShippingServiceCostOverride>
        <ShippingServicePriority>2</ShippingServicePriority>
        <ShippingServiceType>Domestic</ShippingServiceType>
        <ShippingServiceCost currencyID="USD">20.0</ShippingServiceCost>
        <ShippingServiceAdditionalCost currencyID="USD">5.0</ShippingServiceAdditionalCost>
      </ShippingServiceCostOverride>
    </ShippingServiceCostOverrideList>
    <ShippingPackageDetails>
      <PackageDepth measurementSystem="English" unit="inches">4</PackageDepth>
      <PackageLength measurementSystem="English" unit="inches">15</PackageLength>
      <PackageWidth measurementSystem="English" unit="inches">11</PackageWidth>
      <ShippingIrregular>false</ShippingIrregular>
      <ShippingPackage>PackageThickEnvelope</ShippingPackage>
      <WeightMajor measurementSystem="English" unit="lbs">6</WeightMajor>
      <WeightMinor measurementSystem="English" unit="oz">0</WeightMinor>
    </ShippingPackageDetails>
    <HideFromSearch>false</HideFromSearch>
    <eBayPlus>false</eBayPlus>
    <eBayPlusEligible>false</eBayPlusEligible>
    <IsSecureDescription>true</IsSecureDescription>
  </Item>
</GetItemResponse>

Back to list of samples

Sample: Using variation specific filter

Returns some Item Variations that match a variation specific filter.

Description

User b************r has searched for and found a listing with men's Polo t-shirts. He wants to see all colors that may be available in his size only.

Input

The key inputs for this call scenario are the ItemID and VariationSpecifics. The VariationSpecifics container is used as an inclusive filter to return all variations where the Size Item Specific value is M (Medium).

XML format.

<?xml version="1.0" encoding="utf-8"?>
<GetItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
  <RequesterCredentials>
    <eBayAuthToken>A*******3</eBayAuthToken>
  </RequesterCredentials>
  <!-- Replace with a valid ItemID and VariationSpecifics from a search. -->
  <ItemID>4**********0</ItemID>
  <IncludeItemSpecifics>true</IncludeItemSpecifics>
  <VariationSpecifics>
    <NameValueList>
      <Name>Size</Name>
      <Value>M</Value>
    </NameValueList>
  </VariationSpecifics>
</GetItemRequest>

Output

The response includes the details of the listing, and only the variations where Size=M. By looking at each Variation node in the response, the buyer sees that the following colors are available in Medium size: Black, Blue, Navy, Yellow, Green, Gray, White, and Red.

Note that when you retrieve a subset of variations based on a wildcard, eBay doesn't return the VariationSpecificsSet container.

XML format.
<?xml version="1.0" encoding="UTF-8"?>
<GetItemResponse 
  xmlns="urn:ebay:apis:eBLBaseComponents">
  <Timestamp>2022-04-15T20:08:56.068Z</Timestamp>
  <Ack>Success</Ack>
  <Version>1193</Version>
  <Build>E1193_CORE_API_19146280_R1</Build>
  <Item>
    <AutoPay>true</AutoPay>
    <BuyerProtection>ItemIneligible</BuyerProtection>
    <BuyItNowPrice currencyID="USD">0.0</BuyItNowPrice>
    <Country>US</Country>
    <Currency>USD</Currency>
    <GiftIcon>0</GiftIcon>
    <HitCounter>NoHitCounter</HitCounter>
    <ItemID>4**********0</ItemID>
    <ListingDetails>
      <Adult>false</Adult>
      <BindingAuction>false</BindingAuction>
      <CheckoutEnabled>true</CheckoutEnabled>
      <HasReservePrice>false</HasReservePrice>
      <StartTime>2021-10-17T21:16:41.000Z</StartTime>
      <EndTime>2022-04-17T21:16:41.000Z</EndTime>
      <ViewItemURL>https://www.ebay.com/itm/POLO-RALPH-LAUREN-Mens-Classic-Fit-Big-Pony-Crewneck-T-Shirt-NEW-NWT-/4**********0</ViewItemURL>
      <HasUnansweredQuestions>true</HasUnansweredQuestions>
      <HasPublicMessages>false</HasPublicMessages>
      <ViewItemURLForNaturalSearch>https://www.ebay.com/itm/POLO-RALPH-LAUREN-Mens-Classic-Fit-Big-Pony-Crewneck-T-Shirt-NEW-NWT-/4**********0</ViewItemURLForNaturalSearch>
    </ListingDetails>
    <ListingDuration>GTC</ListingDuration>
    <ListingType>FixedPriceItem</ListingType>
    <Location>A**********k</Location>
    <PrimaryCategory>
      <CategoryID>15687</CategoryID>
      <CategoryName>Clothing, Shoes & Accessories:Men:Men's Clothing:Shirts:T-Shirts</CategoryName>
    </PrimaryCategory>
    <PrivateListing>false</PrivateListing>
    <Quantity>129</Quantity>
    <ReviseStatus>
      <ItemRevised>true</ItemRevised>
    </ReviseStatus>
    <Seller>
      <AboutMePage>false</AboutMePage>
      <Email>Invalid Request</Email>
      <FeedbackScore>2518</FeedbackScore>
      <PositiveFeedbackPercent>97.6</PositiveFeedbackPercent>
      <eBayGoodStanding>true</eBayGoodStanding>
      <NewUser>false</NewUser>
      <RegistrationDate>2018-09-29T23:19:14.000Z</RegistrationDate>
      <Site>US</Site>
      <UserID>e**********n</UserID>
      <VATStatus>NoVATTax</VATStatus>
      <SellerInfo>
        <AllowPaymentEdit>true</AllowPaymentEdit>
        <CheckoutEnabled>true</CheckoutEnabled>
        <CIPBankAccountStored>false</CIPBankAccountStored>
        <GoodStanding>true</GoodStanding>
        <LiveAuctionAuthorized>false</LiveAuctionAuthorized>
        <QualifiesForB2BVAT>false</QualifiesForB2BVAT>
        <StoreOwner>true</StoreOwner>
        <StoreURL>https://stores.ebay.com/e**********n</StoreURL>
        <TopRatedSeller>true</TopRatedSeller>
      </SellerInfo>
      <MotorsDealer>false</MotorsDealer>
    </Seller>
    <SellingStatus>
      <BidCount>0</BidCount>
      <BidIncrement currencyID="USD">0.0</BidIncrement>
      <ConvertedCurrentPrice currencyID="USD">39.99</ConvertedCurrentPrice>
      <CurrentPrice currencyID="USD">39.99</CurrentPrice>
      <MinimumToBid currencyID="USD">39.99</MinimumToBid>
      <QuantitySold>51</QuantitySold>
      <ReserveMet>true</ReserveMet>
      <SecondChanceEligible>false</SecondChanceEligible>
      <ListingStatus>Active</ListingStatus>
      <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
    </SellingStatus>
    <ShippingDetails>
      <ApplyShippingDiscount>false</ApplyShippingDiscount>
      <GlobalShipping>true</GlobalShipping>
      <CalculatedShippingRate>
        <WeightMajor measurementSystem="English" unit="lbs">0</WeightMajor>
        <WeightMinor measurementSystem="English" unit="oz">6</WeightMinor>
      </CalculatedShippingRate>
      <SalesTax>
        <SalesTaxPercent>0.0</SalesTaxPercent>
        <ShippingIncludedInTax>false</ShippingIncludedInTax>
      </SalesTax>
      <ShippingServiceOptions>
        <ShippingService>USPSFirstClass</ShippingService>
        <ShippingServiceCost currencyID="USD">4.99</ShippingServiceCost>
        <ShippingServiceAdditionalCost currencyID="USD">2.99</ShippingServiceAdditionalCost>
        <ShippingServicePriority>1</ShippingServicePriority>
        <ExpeditedService>false</ExpeditedService>
        <ShippingTimeMin>3</ShippingTimeMin>
        <ShippingTimeMax>5</ShippingTimeMax>
      </ShippingServiceOptions>
      <ShippingType>Flat</ShippingType>
      <ThirdPartyCheckout>false</ThirdPartyCheckout>
      <ShippingDiscountProfileID>0</ShippingDiscountProfileID>
      <InternationalShippingDiscountProfileID>0</InternationalShippingDiscountProfileID>
      <SellerExcludeShipToLocationsPreference>true</SellerExcludeShipToLocationsPreference>
    </ShippingDetails>
    <ShipToLocations>US</ShipToLocations>
    <ShipToLocations>CA</ShipToLocations>
    <ShipToLocations>GB</ShipToLocations>
    <ShipToLocations>CN</ShipToLocations>
    <ShipToLocations>MX</ShipToLocations>
    <ShipToLocations>DE</ShipToLocations>
    <ShipToLocations>JP</ShipToLocations>
    <ShipToLocations>BR</ShipToLocations>
    <ShipToLocations>FR</ShipToLocations>
    <ShipToLocations>AU</ShipToLocations>
    <ShipToLocations>RU</ShipToLocations>
    <ShipToLocations>DK</ShipToLocations>
    <ShipToLocations>RO</ShipToLocations>
    <ShipToLocations>SK</ShipToLocations>
    <ShipToLocations>BG</ShipToLocations>
    <ShipToLocations>CZ</ShipToLocations>
    <ShipToLocations>FI</ShipToLocations>
    <ShipToLocations>HU</ShipToLocations>
    <ShipToLocations>LV</ShipToLocations>
    <ShipToLocations>LT</ShipToLocations>
    <ShipToLocations>MT</ShipToLocations>
    <ShipToLocations>EE</ShipToLocations>
    <ShipToLocations>GR</ShipToLocations>
    <ShipToLocations>PT</ShipToLocations>
    <ShipToLocations>CY</ShipToLocations>
    <ShipToLocations>SI</ShipToLocations>
    <ShipToLocations>SE</ShipToLocations>
    <ShipToLocations>KR</ShipToLocations>
    <ShipToLocations>ID</ShipToLocations>
    <ShipToLocations>TW</ShipToLocations>
    <ShipToLocations>ZA</ShipToLocations>
    <ShipToLocations>TH</ShipToLocations>
    <ShipToLocations>BE</ShipToLocations>
    <ShipToLocations>HK</ShipToLocations>
    <ShipToLocations>IE</ShipToLocations>
    <ShipToLocations>NL</ShipToLocations>
    <ShipToLocations>PL</ShipToLocations>
    <ShipToLocations>ES</ShipToLocations>
    <ShipToLocations>IT</ShipToLocations>
    <ShipToLocations>AT</ShipToLocations>
    <ShipToLocations>BS</ShipToLocations>
    <ShipToLocations>IL</ShipToLocations>
    <ShipToLocations>NZ</ShipToLocations>
    <ShipToLocations>PH</ShipToLocations>
    <ShipToLocations>SG</ShipToLocations>
    <ShipToLocations>CH</ShipToLocations>
    <ShipToLocations>NO</ShipToLocations>
    <ShipToLocations>SA</ShipToLocations>
    <ShipToLocations>AE</ShipToLocations>
    <ShipToLocations>QA</ShipToLocations>
    <ShipToLocations>KW</ShipToLocations>
    <ShipToLocations>BH</ShipToLocations>
    <ShipToLocations>HR</ShipToLocations>
    <ShipToLocations>MY</ShipToLocations>
    <ShipToLocations>CL</ShipToLocations>
    <ShipToLocations>CO</ShipToLocations>
    <ShipToLocations>CR</ShipToLocations>
    <ShipToLocations>DO</ShipToLocations>
    <ShipToLocations>PA</ShipToLocations>
    <ShipToLocations>TT</ShipToLocations>
    <ShipToLocations>GT</ShipToLocations>
    <ShipToLocations>SV</ShipToLocations>
    <ShipToLocations>HN</ShipToLocations>
    <ShipToLocations>JM</ShipToLocations>
    <ShipToLocations>AG</ShipToLocations>
    <ShipToLocations>AW</ShipToLocations>
    <ShipToLocations>BZ</ShipToLocations>
    <ShipToLocations>DM</ShipToLocations>
    <ShipToLocations>GD</ShipToLocations>
    <ShipToLocations>KN</ShipToLocations>
    <ShipToLocations>LC</ShipToLocations>
    <ShipToLocations>MS</ShipToLocations>
    <ShipToLocations>TC</ShipToLocations>
    <ShipToLocations>BB</ShipToLocations>
    <ShipToLocations>BD</ShipToLocations>
    <ShipToLocations>BM</ShipToLocations>
    <ShipToLocations>BN</ShipToLocations>
    <ShipToLocations>BO</ShipToLocations>
    <ShipToLocations>EC</ShipToLocations>
    <ShipToLocations>EG</ShipToLocations>
    <ShipToLocations>GF</ShipToLocations>
    <ShipToLocations>GG</ShipToLocations>
    <ShipToLocations>GI</ShipToLocations>
    <ShipToLocations>GP</ShipToLocations>
    <ShipToLocations>IS</ShipToLocations>
    <ShipToLocations>JE</ShipToLocations>
    <ShipToLocations>JO</ShipToLocations>
    <ShipToLocations>KH</ShipToLocations>
    <ShipToLocations>KY</ShipToLocations>
    <ShipToLocations>LI</ShipToLocations>
    <ShipToLocations>LK</ShipToLocations>
    <ShipToLocations>LU</ShipToLocations>
    <ShipToLocations>MC</ShipToLocations>
    <ShipToLocations>MO</ShipToLocations>
    <ShipToLocations>MQ</ShipToLocations>
    <ShipToLocations>MV</ShipToLocations>
    <ShipToLocations>NI</ShipToLocations>
    <ShipToLocations>OM</ShipToLocations>
    <ShipToLocations>PE</ShipToLocations>
    <ShipToLocations>PK</ShipToLocations>
    <ShipToLocations>PY</ShipToLocations>
    <ShipToLocations>RE</ShipToLocations>
    <ShipToLocations>VN</ShipToLocations>
    <ShipToLocations>UY</ShipToLocations>
    <Site>US</Site>
    <StartPrice currencyID="USD">39.99</StartPrice>
    <Storefront>
      <StoreCategoryID>1</StoreCategoryID>
      <StoreCategory2ID>0</StoreCategory2ID>
      <StoreURL>https://stores.ebay.com/e**********n</StoreURL>
    </Storefront>
    <TimeLeft>P2DT1H7M45S</TimeLeft>
    <Title>POLO RALPH LAUREN Men's Classic Fit T-Shirt</Title>
    <HitCount>18535</HitCount>
    <LocationDefaulted>true</LocationDefaulted>
    <GetItFast>false</GetItFast>
    <BuyerResponsibleForShipping>false</BuyerResponsibleForShipping>
    <PostalCode>122**</PostalCode>
    <PictureDetails>
      <GalleryType>Gallery</GalleryType>
      <PhotoDisplay>PicturePack</PhotoDisplay>
      <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/t**********D/$_57.JPG?set_id=8**********7</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/v**********j/$_57.JPG?set_id=8**********7</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/I**********P/$_57.JPG?set_id=8**********7</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/N**********S/$_57.JPG?set_id=8**********7</PictureURL>
      <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/3**********Y/$_57.JPG?set_id=8**********7</PictureURL>
    </PictureDetails>
    <DispatchTimeMax>1</DispatchTimeMax>
    <ProxyItem>false</ProxyItem>
    <ItemSpecifics>
      <NameValueList>
        <Name>Department</Name>
        <Value>Men</Value>
        <Source>ItemSpecific</Source>
      </NameValueList>
      <NameValueList>
        <Name>Fit</Name>
        <Value>Classic</Value>
        <Source>ItemSpecific</Source>
      </NameValueList>
      <NameValueList>
        <Name>Type</Name>
        <Value>T-Shirt</Value>
        <Source>ItemSpecific</Source>
      </NameValueList>
      <NameValueList>
        <Name>Neckline</Name>
        <Value>Crew Neck</Value>
        <Source>ItemSpecific</Source>
      </NameValueList>
      <NameValueList>
        <Name>Brand</Name>
        <Value>Polo Ralph Lauren</Value>
        <Source>ItemSpecific</Source>
      </NameValueList>
    </ItemSpecifics>
    <BuyerGuaranteePrice currencyID="USD">20000.0</BuyerGuaranteePrice>
    <IntangibleItem>false</IntangibleItem>
    <ReturnPolicy>
      <ReturnsAcceptedOption>ReturnsNotAccepted</ReturnsAcceptedOption>
      <ReturnsAccepted>No returns accepted</ReturnsAccepted>
      <InternationalReturnsAcceptedOption>ReturnsNotAccepted</InternationalReturnsAcceptedOption>
    </ReturnPolicy>
    <Variations>
      <Variation>
        <StartPrice currencyID="USD">39.99</StartPrice>
        <Quantity>28</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Black</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size Type</Name>
            <Value>Regular</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>7</QuantitySold>
          <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
        </SellingStatus>
      </Variation>
      <Variation>
        <StartPrice currencyID="USD">39.99</StartPrice>
        <Quantity>6</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Blue</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size Type</Name>
            <Value>Regular</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>3</QuantitySold>
          <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
        </SellingStatus>
      </Variation>
      <Variation>
        <StartPrice currencyID="USD">39.99</StartPrice>
        <Quantity>12</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Navy</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size Type</Name>
            <Value>Regular</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>6</QuantitySold>
          <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
        </SellingStatus>
      </Variation>
      <Variation>
        <StartPrice currencyID="USD">39.99</StartPrice>
        <Quantity>19</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Yellow</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size Type</Name>
            <Value>Regular</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>15</QuantitySold>
          <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
        </SellingStatus>
      </Variation>
      <Variation>
        <StartPrice currencyID="USD">39.99</StartPrice>
        <Quantity>14</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Green</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size Type</Name>
            <Value>Regular</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>3</QuantitySold>
          <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
        </SellingStatus>
      </Variation>
      <Variation>
        <StartPrice currencyID="USD">39.99</StartPrice>
        <Quantity>23</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Gray</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size Type</Name>
            <Value>Regular</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>3</QuantitySold>
          <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
        </SellingStatus>
      </Variation>
      <Variation>
        <StartPrice currencyID="USD">39.99</StartPrice>
        <Quantity>18</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>White</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size Type</Name>
            <Value>Regular</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>5</QuantitySold>
          <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
        </SellingStatus>
      </Variation>
      <Variation>
        <StartPrice currencyID="USD">39.99</StartPrice>
        <Quantity>9</Quantity>
        <VariationSpecifics>
          <NameValueList>
            <Name>Color</Name>
            <Value>Red</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size Type</Name>
            <Value>Regular</Value>
          </NameValueList>
          <NameValueList>
            <Name>Size</Name>
            <Value>M</Value>
          </NameValueList>
        </VariationSpecifics>
        <SellingStatus>
          <QuantitySold>9</QuantitySold>
          <QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
        </SellingStatus>
      </Variation>
      <Pictures>
        <VariationSpecificName>Color</VariationSpecificName>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Black</VariationSpecificValue>
          <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/i7gAAOSw59BhbJD5/$_57.JPG?set_id=8**********7</PictureURL>
        </VariationSpecificPictureSet>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Blue</VariationSpecificValue>
          <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/v9sAAOSw1BthbJEJ/$_57.JPG?set_id=8**********7</PictureURL>
        </VariationSpecificPictureSet>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Navy</VariationSpecificValue>
          <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/t**********t/$_57.JPG?set_id=8**********7</PictureURL>
        </VariationSpecificPictureSet>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Yellow</VariationSpecificValue>
          <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/T**********w/$_57.JPG?set_id=8**********7</PictureURL>
        </VariationSpecificPictureSet>
        <VariationSpecificPictureSet>
          <VariationSpecificValue>Green</VariationSpecificValue>
          <PictureURL>https://i.ebayimg.com/00/s/M**********w/z/4**********0/$_57.JPG?set_id=8**********7</PictureURL>
        </VariationSpecificPictureSet>
      </Pictures>
    </Variations>
    <ConditionID>1000</ConditionID>
    <ConditionDisplayName>New with tags</ConditionDisplayName>
    <QuantityAvailableHint>MoreThan</QuantityAvailableHint>
    <QuantityThreshold>10</QuantityThreshold>
    <PostCheckoutExperienceEnabled>false</PostCheckoutExperienceEnabled>
    <ShippingPackageDetails>
      <ShippingIrregular>false</ShippingIrregular>
      <ShippingPackage>PackageThickEnvelope</ShippingPackage>
      <WeightMajor measurementSystem="English" unit="lbs">0</WeightMajor>
      <WeightMinor measurementSystem="English" unit="oz">6</WeightMinor>
    </ShippingPackageDetails>
    <HideFromSearch>false</HideFromSearch>
    <eBayPlus>false</eBayPlus>
    <eBayPlusEligible>false</eBayPlusEligible>
    <IsSecureDescription>true</IsSecureDescription>
  </Item>
</GetItemResponse>

Back to list of samples



Change History

Change Date Description
1349
2024-02-26
  • ProductListingDetails (modified): The TicketListingDetails container and the TicketListingDetailsType have been decommissioned and removed from ProductListingDetailsType.
  • Item (modified): The QuantityInfo container and the QuantityInfoType have been decommissioned and removed from ItemType.
  • CalculatedShippingRate (modified): The OriginatingPostalCode field has been decommissioned and removed from CalculatedShippingRateType. Use Item.PostalCode instead.
1345
2024-02-01
  • Regulatory.EconomicOperator (added): The EconomicOperator container (EconomicOperatorType) and its child fields have been added to the RegulatoryType. This container is used to provide required information about the manufacturer and/or supplier of the item.
1331
2023-10-23
  • Item.SellingStatus. (added): This field is used to indicate if a listing is currently on hold.
1323
2023-08-25
  • ProductListingDetails.TicketListingDetails (modified): The TicketListingDetails container and its child fields have been deprecated and are not usable.
  • ExtendedProducerResponsibilityType (modified): Several decommissioned fields were removed from ExtendedProducerResponsibilityType. The fields removed included: ProducerProductID, ProductPackageID, ShipmentPackageID, and ProductDocumentationID. These fields are no longer usable; if used, the user will get a warning about the fields no longer being supported.
  • SiteCodeType (modified): Czechia and Cyprus have been added to SiteCodeType as enumeration values. These sites cannot be set in the X-EBAY-API-SITEID header, nor in the Site field of a request payload.
  • CalculatedShippingRate (modified): The OriginatingPostalCode field has been deprecated and is not usable. Currently ignored. Use Item.PostalCode instead.
  • Item (modified): The QuantityInfo container and MinimumRemnantSet field, and the QuantityInfoType, have been deprecated and are not usable. Currently ignored.
1321
2023-07-17
  • ShippingDetails.CODCost (deprecated): This field has been removed from the Trading WSDL.
1319
2023-06-26
  • ConditionDescriptorsType (added): This type and its child field, ConditionDescriptor (ConditionDescriptorType), are used to provide the data for condition descriptors associated with an item.
  • ConditionDescriptorType (added): This type and its child fields, AdditionalInfo, Name, and Value, are used to provide information about the specific condition of an item.
1315
2023-06-16
  • ShippingDetails.CODCost (deprecated): CODCost has been deprecated since COD is no longer a supported payment method on any marketplace.
1311
2023-05-19
  • EnergyEfficiencyType (added): This type and its child fields are used to provide Energy Efficiency Label related information for listings.
  • Item.EnergyEfficiencyLabel (added): This container and its child fields are used to provide Energy Efficiency Label related information for listings.
  • Item.EnergyEfficiencyLabel.ImageDescription (added): This field contains the description for the displayed Energy Efficiency Label.
  • Item.EnergyEfficiencyLabel.ImageURL (added): This field contains the URL of the Energy Efficiency Label.
  • Item.EnergyEfficiencyLabel.ProductInformationsheet (added): This field contains the URL of the Product Information Sheet.
1285
2022-11-18
  • Item.PictureDetails.PictureURL (modified): This release of the Trading API updates the picture limit. With the exception of motor vehicle listings on the US and Canada marketplaces, sellers can now include up to 24 pictures in a listing free of charge in all categories on all marketplaces. The number of included pictures in motor vehicle listings depend on the selected vehicle package (see Fees for selling vehicles on eBay Motors).
1281
2022-10-21
  • IsItemEMSEligible (added): If true, the item is eligible for shipping managed by eBay; false, the item is not eligible for shipping managed by eBay.
1249
2022-03-11
  • Item.ExtendedProducerResponsibility (modified): This container and its child fields provide IDs for the producer or importer related to the new item, packaging, added documentation, or an eco participation fee. This container is only returned to the listing owner, if the container is available. In some markets, such as in France, this may be the importer of the item. This feature is supported by a limited number of sites and specific categories.
  • Variation.VariationExtendedProducerResponsibility (modified): This container and its child field defines variation-specific Extended Producer Responsibility information, specifically the EcoParticipationFee. This container is only returned to the listing owner, if the container is available.
1247
2022-02-25
  • Item.HitCount (deprecated): Hit counters are no longer shown in View Item pages, so this field is no longer applicable.
  • Item.HitCounter (deprecated): Hit counters are no longer shown in View Item pages, so this field is no longer applicable.
1207
2021-05-21
  • VATDetails.VATPercent (modified): This value may only have one digit beyond the decimal point (e.g. 12.3). Previously, three digits after the decimal point were allowed.
  • VATDetails.VATPercent (modified): The maximum percentage value allowed for this field has decreased from 30 to 27 percent.
1203
2021-04-23
  • VideoDetailsType (added): This container is used to indicate to the seller if a video is attached to a listing.
  • Item.VideoDetails (added): This container is used to show the seller of an item which video is attached to a listing.
1193
2021-02-12
  • ShippingServiceCostOverride.ShippingSurcharge (deprecated): This element has been removed from the WSDL.
1161
2020-07-06
  • Item.ListingDesigner (deprecated): This container removed from WSDL, although it is possible that this container may still get returned in a response for an existing listing that was already using a Listing Designer template before this feature was retired.
1157
2020-06-05
  • Item.ListingDesigner (deprecated): Sellers are no longer able to use Listing Designer templates when they create or revise listings. Existing listings that are already using a Listing Designer template will remain unchanged.
  • Item.ReturnPolicy (doc change): Updated return policy-related documentation to make it more clear that if a seller does not add a separate international return policy for an item, the settings in the domestic return policy will be used instead.
1145
2020-03-13
  • Charity.CharityID, Charity.CharityNumber (doc change): Clarified the difference between CharityID (eBay identifier) and CharityNumber (PayPal Giving Fund identifier), and also added a note about CharityNumber field being scheduled for deprecation.
1139
2020-01-31
  • Item.PostalCode (modified): Returned postal code values will now be masked to all users except for the seller of the item.
1119
2019-08-02
  • PictureDetails.GalleryDuration (deprecated): The Featured Gallery listing feature is being deprecated, and the GalleryDuration field was only used to set the duration of the Featured Gallery. Although this field has been removed from the Trading WSDL, it may still get returned in 'Get' calls until mid-September 2019, when this feature will be completely wired off.
  • GalleryTypeCodeType (modified): The Featured value of GalleryTypeCodeType is no longer applicable with the scheduled deprecation of the Featured Gallery listing feature. Once the Featured Gallery listing feature is wired off, any existing listings with the GalleryType value set to Featured will default to a value of Gallery
  • ShippingServiceOptions.ShippingSurcharge (deprecated): The ShippingSurcharge field in ShippingServiceOptionsType has been removed from the Trading WSDL. For the next 18 months, this field will still be supported if used in a Add/Revise/Relist call, but it is recommended that sellers configure shipping surcharges in Shipping rate tables instead. Shipping rate tables can be added and modified through the Shipping Preferences in My eBay. Note that this field may still get returned in 'Get' calls if configured through Shipping rate tables.
1091
2019-01-18
  • BestOfferDetails.BestOfferEnabled (modified): Best Offers in Auction listings are now supported on the following eBay marketplaces: US, Canada, UK, Germany, Australia, France, Italy, and Spain.
  • ListingDetails.MinimumBestOfferPrice (modified): Sellers accepting Best Offers for an auction listing can now set the Best Offer Auto Reject threshold price to a dollar value higher than the auction starting price.
  • SellerContactDetails.Phone2CountryCode, SellerContactDetails.Phone2CountryPrefix, SellerContactDetails.Phone2AreaOrCityCode, SellerContactDetails.Phone2LocalNumber (deprecated): These secondary phone number fields were deprecated, as adding a secondary contact number is no longer supported for Classified Ad listings.
  • Item.MotorsGermanySearchable (deprecated): This field was deprecated since placing eBay Germany motor vehicle listings on the mobile.de site is no longer supported.
  • Seller.MotorsDealer (deprecated): This field was deprecated since eBay Motors Pro is a deprecated feature.
  • Item.ShippingTermsInDescription (deprecated): This field is no longer applicable, so was deprecated.
1085
2018-10-26
  • Item.PaymentMethods (modified): For sellers enrolled in the new eBay Managed Payments program, a specified payment method is not necessary. If a payment method is specified, such as PayPal, it will be dropped from the listing and the seller will get a warning message when the call is run.
  • Item.AutoPay (modified): The immediate payment feature is also available for sellers enrolled in the new eBay Managed Payments program. In the past, this feature was only available to sellers who were offering PayPal as the only available payment method.
  • ShippingDetails.SalesTax (doc change): Added a note to state that the Sales Tax rate for a US tax jurisdiction that is subject to the 'eBay Collect and Remit Tax' program will be ignored during the checkout process, since eBay will be collecting and remitting this tax to the tax authorities without the seller's involvement.
  • ProductListingDetails.EAN, ProductListingDetails.UPC (doc change): Highlighted the fact that a seller selling a product with a UPC value on a European eBay site is expected to pass this UPC value into the EAN field, and a seller selling a product with an EAN value on the US eBay site is expected to pass this EAN value into the UPC field. EAN values are 13 characters long, and UPC values are 12 characters long.
  • VariationProductListingDetails.EAN, VariationProductListingDetails.UPC (doc change): Highlighted the fact that a seller selling multiple products (in a multiple-variation listing) with UPC values on a European eBay site is expected to pass these unique UPC values into the EAN field for each variation, and a seller selling multiple products (in a multiple-variation listing) with EAN values on US eBay site is expected to pass these unique EAN values into the UPC field for each variation. EAN values are 13 characters long, and UPC values are 12 characters long.
  • ShippingPackageDetails.WeightMajor, ShippingPackageDetails.WeightMinor (doc change): Updated field description to tell users to use whole numbers in the WeightMajor and WeightMinor fields to specify shipping package weight. Also provided samples in these two fields how different weight should be specified.
  • VATDetailsType (doc change): Cleaned up type documentation. Made it more clear which fields are used, and how they are used when a listing is created/revised/relisted.
1081
2018-09-28
  • Item.ListingDuration (modified): A 30-day listing duration (Days_30) can now be set for eBay Motors listings. The 21-day listing duration (Days_21) will soon be wired off for eBay Motors listings.
  • RateTableDetails.DomesticRateTableId (modified): Regional shipping rate tables have been enabled for the following sites: Canada (English), Canada (French), and Italy. With regional shipping rate tables, the seller can customize and set the shipping rates based on shipping speed and distance to specified domestic regions. Regional shipping rate tables are required for sellers opted into the eBay Guaranteed Delivery feature and using the 'Door-to-Door' option.
  • ShippingDetails.PaymentInstructions (doc change): The maximum length for this field was inaccurately documented as 1000, when the maximum length is actually 500 characters.
1077
2018-08-31
  • ItemSpecifics.NameValueList (modified): New 'California Prop 65 Warning' item specific added to support a new California Proposition 65 Warning message that can be added to a listing. This item specific is returned if set on the listing.
  • EndingReasonCodeType (modified): Added the new enumeration value, ProductDeleted, to the type. This enumeration value cannot be used by the seller in an End listing call, but it will get returned in GetItem if a listing was administratively ended by eBay if the item in a listing becomes unpurchasable due to the eBay Catalog product associated with the listing being removed from the catalog.
1073
2018-08-03
  • ReturnPolicy.InternationalReturnsWithinOption, ReturnPolicy.ReturnsWithinOption (modified): The Months_1 enumeration value (a valid value for DE and AT sites) is being deprecated, and should no longer be used.
  • ProductListingDetails.ProductReferenceID (doc change): Although this field was already being returned, it was previously missing in the Call Reference documentation.
1065
2018-06-08
  • BuyerRequirementDetailsType.MinimumFeedbackScore (deprecated): This field is no longer applicable and has been removed from the WSDL as of Version 1065. It is scheduled to be deprecated.
  • BuyerRequirementDetailsType.LinkedPayPalAccount (deprecated): This field is no longer applicable and has been removed from the WSDL as of Version 1065. It is scheduled to be deprecated.
  • BuyerRequirementDetailsType.VerifiedUserRequirements (deprecated): This field is no longer applicable and has been removed from the WSDL as of Version 1065. It is scheduled to be deprecated.
  • BuyerRequirementDetailsType.MaximumBuyerPolicyViolations (deprecated): This field is no longer applicable and has been removed from the WSDL as of Version 1065. It is scheduled to be deprecated.
  • MaximumBuyerPolicyViolationsType (deprecated): This type is no longer applicable and has been removed from the WSDL as of Version 1065. This type was only used by the MaximumBuyerPolicyViolations field, which was also removed.
  • VerifiedUserRequirementsType (deprecated): This type is no longer applicable and has been removed from the WSDL as of Version 1065. This type was only used by the VerifiedUserRequirements field, which was also removed.
1061
2018-05-11
  • ReturnPolicy.InternationRefundOption (added): This release adds the option to specify return policies for international returns (which are items returned using an international shipping service). If you sell internationally, your international return policy is by default inherited from your domestic return policy (in this case ReturnPolicy.RefundOption). Set this option so st set up an international return policy if you want to differentiate your international return policy from your domestic return policy. For details, see the Release Notes.
  • ReturnPolicy.InternationReturnsAcceptedOption (added): This release adds the option to specify return policies for international returns.
  • ReturnPolicy.InternationReturnsWithinOption (added): This release adds the option to specify return policies for international returns.
  • ReturnPolicy.InternationShippingCostPaidByOption (added): This release adds the option to specify return policies for international returns.
  • ReturnPolicy.ExtendedHolidayReturns (deprecated): This release deprecates ExtendedHolidayReturns. Values set in this field are ignored.
  • ReturnPolicy.Refund (deprecated): This release deprecates Refund as a formatted response field.
  • ReturnPolicy.RestockingFeeValue (deprecated): This release deprecates RestockingFeeValue. As of this release, sellers are no longer allowed to specify a special restocking fee for returned items. Values set in this field are ignored.
  • ReturnPolicy.RestockingFeeValueOption (deprecated): This release deprecates RestockingFeeValueOption. As of this release, sellers are no longer allowed to specify a special restocking fee for returned items. Values passed to this field are ignored.
  • ReturnPolicy.ReturnsAccepted (deprecated): This release deprecates ReturnsAccepted as a formatted response field.
  • ReturnPolicy.ReturnsWithin (deprecated): This release deprecates ReturnsWithin as a formatted response field.
  • ReturnPolicy.ShippingCostsPaidBy (deprecated): This release deprecates ShippingCostsPaidBy as a formatted response field.
  • ReturnPolicy.WarrantyDuration (deprecated): This release deprecates WarrantyDuration. As of this release, eBay no longer supports item warranties. Values set in this field are ignored.
  • ReturnPolicy.WarrantyDurationOption (deprecated): This release deprecates WarrantyDurationOption. As of this release, eBay no longer supports item warranties. Values set in this field are ignored.
  • ReturnPolicy.WarrantyOffered (deprecated): This release deprecates WarrantyOffered. As of this release, eBay no longer supports item warranties. Values set in this field are ignored.
  • ReturnPolicy.WarrantyOfferedOption (deprecated): This release deprecates WarrantyOfferedOption. As of this release, eBay no longer supports item warranties. Values set in this field are ignored.
  • ReturnPolicy.WarrantyType (deprecated): This release deprecates WarrantyType. As of this release, eBay no longer supports item warranties. Values set in this field are ignored.
  • ReturnPolicy.WarrantyTypeOption (deprecated): This release deprecates WarrantyTypeOption. As of this release, eBay no longer supports item warranties. Values set in this field are ignored.
1049
2018-02-16
  • Item.EligibleForPickupDropOff (deprecated): Add/Revise/Relist/Verify calls can no longer be used to set Click and Collect eligibility at the listing level, so this field should not be returned in GetItem. However, until the PickupInStoreDetails.EligibleForPickupDropOff in Add/Revise/Relist/Verify calls is fully deprecated in the Trading WSDL, it can still be used in those calls, but it will have no functional affect. However, if set in an Add/Revise/Relist/Verify call, it will get returned in GetItem.
  • PickupInStoreDetails.EligibleForPickupDropOff (deprecated): Add/Revise/Relist/Verify calls can no longer be used to set Click and Collect eligibility at the listing level, so this field should not be returned in GetItem. However, until the PickupInStoreDetails.EligibleForPickupDropOff in Add/Revise/Relist/Verify calls is fully deprecated in the Trading WSDL, it can still be used in those calls, but it will have no functional affect. However, if set in an Add/Revise/Relist/Verify call, it will get returned in GetItem.
  • Item.AvailableForPickupDropOff (doc change): A note was added about sellers only being able to enable the Click and Collect feature at the account level, and then each individual listing within a Click and Collect-enabled category must be evaluated for eligibility.
1039
2017-10-17
  • Item.IsSecureDescription (added): This boolean field indicates whether or not the listing description is HTTPS secure/compliant. To be HTTPS secure/compliant, the listing description field may not contain any links to site pages that use the HTTP (and not HTTPS) protocol.
  • ReturnPolicy.RestockingFeeValueOption (modified): The Percent_20 value indicates that the seller reserves the right to charge a restocking fee percentage for returned items of up to 20 percent (of sale price), but at the seller's discretion, they can also charge less than 20 percent.
  • ReturnPolicy.RestockingFeeValue (modified): The 20% value indicates that the seller reserves the right to charge a restocking fee percentage for returned items of up to 20 percent (of sale price), but at the seller's discretion, they can also charge less than 20 percent.
  • ShippingDetails.RateTableDetails (modified): Once a seller's account is updated with the new shipping rate tables in My eBay, the seller will be required to use the new DomesticRateTableId and InternationalRateTableId fields, and the DomesticRateTable and InternationalRateTable tags will no longer work. The required IDs for these tables can be retrieved with the getRateTables method of the Account API.
1031
2017-09-01
  • ShippingDetails.InsuranceDetails, ShippingDetails.InternationalInsuranceDetails (deprecated): These two containers and InsuranceDetailsType have been deprecated, as it is no longer possible/applicable for sellers to offer shipping insurance to buyers on any eBay site.
1029
2017-08-18
  • Item.GiftIcon (deprecated): This field is no longer applicable and is in the process of being deprecated. Gift Services and the Gift Icon are no longer supported on any eBay Marketplace sites.
  • Item.GiftServices (deprecated): This field is no longer applicable and is in the process of being deprecated. Gift Services and the Gift Icon are no longer supported on any eBay Marketplace sites.
  • GiftServicesCodeType (deprecated): This type is no longer applicable and is in the process of being deprecated. Gift Services and the Gift Icon are no longer supported on any eBay Marketplace sites.
  • ListingEnhancementsCodeType (modified): The following enumeration values are no longer applicable, as the listing enhancements associated with these enumeration values are no longer supported on any eBay Marketplace site: BasicUpgradePackBundle, Border, Featured, Highlight, ProPackBundle, and ProPackPlusBundle.
1027
2017-08-04
  • ListingTypeCodeType (modified): The Half enumeration value is being deprecated, as API support for Half.com listings is being deprecated.
  • UserStatusCodeType (modified): The CreditCardVerifyHalfOptIn and UnconfirmedHalfOptIn enumeration values are being deprecated, as API support for Half.com listings is being deprecated.
1019
2017-06-09
  • RateTableDetails.DomesticRateTableId (added): New field added to support new domestic shipping rate tables. The new shipping rate tables are currently only available on US and Australia sites, but will be coming soon to UK and Germany sites.
  • RateTableDetails.InternationalRateTableId (added): New field added to support new international shipping rate tables. The new shipping rate tables are currently only available on US and Australia sites, but will be coming soon to UK and Germany sites.
0997
2017-01-20
  • CalculatedShippingRate.PackageDepth (deprecated): This field is being deprecated. If applicable, package type, Package dimensions, and package weight data will now be returned in the ShippingPackageDetails container instead.
  • CalculatedShippingRate.PackageLength (deprecated): This field is being deprecated. If applicable, package type, Package dimensions, and package weight data will now be returned in the ShippingPackageDetails container instead.
  • CalculatedShippingRate.PackageWidth (deprecated): This field is being deprecated. If applicable, package type, Package dimensions, and package weight data will now be returned in the ShippingPackageDetails container instead.
  • CalculatedShippingRate.ShippingPackage (deprecated): This field is being deprecated. If applicable, package type, Package dimensions, and package weight data will now be returned in the ShippingPackageDetails container instead.
  • CalculatedShippingRate.WeightMajor (deprecated): This field is being deprecated. If applicable, package type, Package dimensions, and package weight data will now be returned in the ShippingPackageDetails container instead.
  • CalculatedShippingRate.WeightMinor (deprecated): This field is being deprecated. If applicable, package type, Package dimensions, and package weight data will now be returned in the ShippingPackageDetails container instead.
  • Item.ListingCheckoutRedirectPreference (deprecated): This field is being deprecated. Third-party checkout has been deprecated.
  • Item.PostCheckoutExperienceEnabled (deprecated): This field is being deprecated. The Post-Checkout Experience feature has been deprecated.
  • Item.SkypeContactOption (deprecated): This field is being deprecated. Member communication through Skype has been deprecated.
  • Item.SkypeEnabled (deprecated): This field is being deprecated. Member communication through Skype has been deprecated.
  • Item.SkypeID (deprecated): This field is being deprecated. Member communication through Skype has been deprecated.
  • Item.ThirdPartyCheckoutIntegration (deprecated): This field is being deprecated. Third-party checkout has been deprecated.
  • PictureDetails.GalleryURL (deprecated): This field is being deprecated from public WSDL. It is only used internally.
  • ReturnPolicy.EAN (deprecated): This field is being deprecated. The EAN value will no longer be a part of the seller's return policy.
  • ShippingDetails.InsuranceFee (deprecated): This field is being deprecated. If applicable, the shipping insurance fee will be returned in the ShippingDetails.InsuranceDetails or ShippingDetails.InternationalInsuranceDetails containers instead.
  • ShippingDetails.InsuranceOption (deprecated): This field is being deprecated. If applicable, the shipping insurance option will be returned in the ShippingDetails.InsuranceDetails or ShippingDetails.InternationalInsuranceDetails containers instead.
0975
2016-07-01
  • ProductListingDetails.BrandMPN (doc change): Call reference documentation updated to show that this container is returned (when applicable). Previously, this container was inaccurately missing from the call reference documentation.
  • ProductListingDetails.EAN (doc change): Call reference documentation updated to show that this field is returned (when applicable). Previously, this field was inaccurately missing from the call reference documentation.
  • ProductListingDetails.ISBN (doc change): Call reference documentation updated to show that this field is returned (when applicable). Previously, this field was inaccurately missing from the call reference documentation.
  • ProductListingDetails.TicketListingDetails (doc change): Call reference documentation updated to show that this container is returned (when applicable). Previously, this container was inaccurately missing from the call reference documentation.
  • ProductListingDetails.UPC (doc change): Call reference documentation updated to show that this field is returned (when applicable). Previously, this field was inaccurately missing from the call reference documentation.
0959
2016-03-11
  • ItemCompatabilityType (modified): Added the ability to return eBay Product ID (ePID) numbers in the DE and UK eBay sites to specify parts compatibility for motorcycles (in DE, scooter parts compatibility is also supported).
0955
2016-02-12
  • BuyerPaymentMethodCodeType (modified): The Moneybookers, ProPay, and Paymate enumeration values have been deprecated, and will no longer be returned in any calls.
0945
2015-10-15
  • BuyerPaymentMethodCodeType (modified): Moneybookers, ProPay, or Paymate will no longer be accepted as valid PaymentMethods for new listings. However, these payment methods will still be allowed for existing listings, so these values may still get returned until these payment methods are completely removed from all listings.
0939
2015-09-04
  • ProductListingDetails.IncludeeBayProductDetails (added): This boolean field controls whether or not an eBay catalog product is used to help create or revise an item listing. For this field to have an effect, the user must specify a product ID value through the ProductListingDetails container, and eBay must be able to match the product in the listing to a product in the eBay catalog.
0933
2015-07-24
  • Item.eBayPlusEligible (added): This new field returns a boolean value that indicates whether an item is is eligible to be listed under the eBay Plus program. eBay Plus is a premium account option for buyers, which provides benefits such as fast free domestic shipping and free returns on selected items. Currently available only in Germany.
  • Item.eBayPlus (added): This new field returns a boolean value that indicates whether the eBay Plus program is being offered on an item listing. eBay Plus is a premium account option for buyers, which provides benefits such as fast free domestic shipping and free returns on selected items. Currently available only in Germany.
  • Item.DigitalGoodInfo (added): This container is returned to indicate that the listing contains a digital gift card listing.
  • Item.eMailDeliveryAvailable (added): The boolean value that is returned in this field will indicate whether or not a digital gift card can be delivered by email to the buyer or recipient of the gift card. This field is only applicable to digital gift card listings.
0931
2015-07-10
  • ItemType.eMailDeliveryAvailable (added): This new field returns a boolean value that indicates whether the item can be delivered using email. This is used only for digital gift cards.
  • NameValueList.Name (modified): The maximum length was increased to 65.
  • NameValueList.Value (modified): The maximum length was increased to 65.
0921
2015-05-01
  • NameValueList.Name (modified): In a multiple-variation listing, the Brand should be returned at the item level (ItemSpecifics container) and the MPN for the product variation should be returned at the variation level (VariationSpecifics container).
  • Item.ProductListingDetails (modified): In a multiple-variation listing, the product identifier (EAN, ISBN or UPC) for a product variation should be returned in the Variation.VariationProductListingDetails container instead.
  • BrandMPN.Brand (modified): Decreased maximum length of string value to 65 characters. If Brand and MPN (Manufacturer Part Number) are being used to identify product variations in a multiple-variation listing, the Brand should be returned at the item level (this field and the ItemSpecifics container) and the MPN for each product variation should be returned at the variation level (VariationSpecifics container).
  • BrandMPN.MPN (modified): Decreased maximum length of string value to 65 characters. If Brand and MPN (Manufacturer Part Number) are being used to identify product variations in a multiple-variation listing, the Brand should be returned at the item level (this field and the ItemSpecifics container) and the MPN for each product variation should be returned at the variation level (VariationSpecifics container).
  • ProductListingDetails.EAN (modified): In a multiple-variation listing, the EAN of a product variation should be returned in the VariationProductListingDetails container instead. If the listing is in a category that expects an EAN value, but one doesn't exist for the product, this field may contain text similar or identical to 'Does not apply'.
  • ProductListingDetails.ISBN (modified): In a multiple-variation listing, the ISBN of a product variation should be returned in the VariationProductListingDetails container instead. If the listing is in a category that expects an ISBN value, but one doesn't exist for the product, this field may contain text similar or identical to 'Does not apply'.
  • ProductListingDetails.UPC (modified): In a multiple-variation listing, the UPC of a product variation should be returned in the VariationProductListingDetails container instead. If the listing is in a category that expects a UPC value, but one doesn't exist for the product, this field may contain text similar or identical to 'Does not apply'.
  • VariationProductListingDetails (added): This container is returned if a product variation within a multiple-variation listing was identified with an EAN, an ISBN, or a UPC value.
0905
2015-01-09
  • DiscountPriceInfoType (modified): The Strikethrough Pricing Feature is now available for more sites. These sites include US, eBay Motors, UK, Germany, Canada (English and French), France, Italy, and Spain.
  • CalculatedShippingRateType (modified): Data fields in this container used to specify shipping package weight and dimensions should no longer be used. Instead, the equivalents fields in ShippingPackageDetailsType should be used.
0899
2014-11-04
  • BuyerPaymentMethodCodeType (modified): 'QIWI' added as enumeration value. This payment method can only be specified on the US site and is only applicable to Russian buyers.
0897
2014-10-21
  • SiteCodeType (modified): 'Russia' added as enumeration value to support selling on the new Russia site.
0895
2014-10-07
  • Item.LiveAuction (doc change): Added more content to the field description.
0889
2014-08-26
  • ExtendedPictureDetails (added): This container returns the URLs of both the self-hosted and eBay Picture Service images in and .
0885
2014-07-29
  • Item.IgnoreQuantity (doc change): Although originally added to the Trading WSDL in Version 871, this field was omitted from the API Call Reference docs until this release. If this boolean flag is returned (and it is only returned if 'True'), it indicates that items in a multi-quantity listing are currently only available through local fulfillment methods such as eBay Now, In-Store Pickup, or Click and Collect, and that the value in the Quantity field under the Item node or under any Variation node should be ignored since this value is only used to indicate how many items are available through the "Ship to home" method.
0883
2014-07-15
  • BuyerPaymentMethodCodeType (modified): The 'PayUponInvoice' enumeration value was added. This buyer payment method is for future use and will become available to the Germany site with the rollout of Progressive Checkout in October 2014. eBay/PayPal makes the determination (based on several factors) during checkout whether the buyer is eligible for 'Pay Upon Invoice'. If the buyer is offered the 'Pay Upon Invoice' option, that buyer is not required to pay for the order until an order invoice is sent by the seller.
  • Item.TopRatedListing (doc change): This field's description was updated to include the latest Top-Rated Seller and Top-Rated Listing requirements.
0879
2014-06-17
  • Item.LiveAuction (added): This boolean field is returned as 'true' if the auction listing is a "Live Auction". The Live Auctions feature will allow real-time bidding on eBay for items that are up for bidding at a live auction (physical location).
  • PickupInStoreDetails.EligibleForPickupDropOff (added): This boolean field is returned as 'true' if the listing is enabled for the "Click and Collect" feature.
  • ReturnPolicyType.ExtendedHolidayReturns (added): This boolean field is returned as 'true' if the seller offers the item with an extended holiday returns period, overriding the seller's existing return policy period for the item during the winter holidays. Buyers who purchase the item from early November through the end of the year have until the end of January to return it.
0871
2014-04-22
  • Item.AvailableForPickupDropOff (added): This boolean field will be returned as 'true' if the item is available for the "Pick Up, Drop Off" feature, a feature that will only be supported in the UK, initially.
  • Item.EligibleForPickupDropOff (added): This boolean field will be returned as 'true' if the item is eligible for the "Pick Up, Drop Off" feature, a feature that will only be supported in the UK, initially.
0867
2014-03-25
  • Item.eBayNowAvailable (added): This boolean field will be returned as 'true' if the item is available for eBay Now delivery.
0861
2014-02-11
  • StorefrontType.StoreCategoryName (added): This field is used by eBay Stores sellers to list an item under one of their custom categories using the category name.
  • StorefrontType.StoreCategory2Name (added): This field is used by eBay Stores sellers to list an item under a second category using one of their custom categories names.
0859
2014-01-28
  • Item.OutOfStockControl (modified): OutOfStockControl can now be used with BestOffer.
0851
2013-11-19
  • Item.ConditionDescription (modified): ConditionDescription is now supported on the following eBay sites: US and US Motors (0, 100), CA (2), CAFR (210), UK (3), AU (15), AT (16), BEFR (23), BENL (123) FR (71), DE (77), IT (101), NL (146), ES (186), CH (193), IE (205), PL (212).
0849
2013-11-05
  • Item.ConditionDescription (modified): In addition to the eBay US and US eBay Motors (0), UK (3), CA (2), CAFR (210) and AU (15) sites, ConditionDescription is now supported on the AT (16), FR (71), IT (101) and ES (186) sites.
  • Item.PaymentMethods (modified): 'CreditCard' and 'DirectDebit' added as acceptable buyer payment methods. These two values will only be returned for eBay Now-enabled listings.
  • ShippingServiceOptions.ShippingService (modified): 'eBayNowImmediateDelivery' added as an acceptable value in the ShippingService field. This value will only be returned for eBay Now-enabled listings.
0843
2013-09-24
  • RateTableDetails.DomesticRateTable (modified): In addition to the eBay US, UK, DE and Motors Parts and Accessories sites, sellers listing on the eBay AU site can now configure domestic shipping rate tables in My eBay Shipping Preferences. In a domestic rate table, a seller can specify an alternative flat shipping rate for each shipping service category, in each of several domestic regions. Use the DomesticRateTable field to specify the domestic rate table to use for a listing.
0841
2013-09-19
  • IncludeItemSpecifics, Item.UnitInfo (doc change): The Item.UnitInfo container is not returned unless IncludeItemSpecifics is included in the request and set to true. This is the designed behavior.
0837
2013-08-29
  • SellingStatus.QuantitySoldByPickupInStore (added): This field indicates the total quantity of items or total quantity of item variations sold and picked up by buyers using the In-Store Pickup option. This field is returned at the item level and at the variation level (for multi-variation listings). At the item level, this value is the total quantity of items (for single and multi-variation listings) sold and picked up by buyers using the In-Store Pickup option. At the variation level, this value is the total quantity of item variations sold and picked up by buyers using the In-Store Pickup option.
  • BestOfferDetails.NewBestOffer (added): This boolean field will be returned as 'true' if a fixed-price listing is requiring immediate payment, and the item's category supports Immediate Payment for Best Offers.
  • ItemCompatibilityList (doc change): This container includes only compatibility details that were specified manually; that is, they do not correspond to an eBay catalog product. To retrieve compatibility details that do correspond to eBay catalog products, use the eBay Product API's getProductCompatibilities call.
0829
2013-06-19
  • ReturnPolicy.RefundOption (modified): A new 'MoneyBackOrReplacement' value is now supported. This value should be used by a seller opted in to eBay-managed returns who wants to give buyers the choice of receiving a refund for a returned item, or receiving a replacement item.
0825
2013-05-22
  • ListingDetails.EndingReason (added): An EndingReason value is returned under the ListingDetails container if the seller ended the listing early through an API call (such as EndItem) or on the Web site. This field will start being returned in Version 825.
  • ReturnPolicy.ReturnsWithinOption (modified): A new 'Months_1' value is now supported. This value indicates a one-month return policy.
0817
2013-03-27
  • Item.DispatchTimeMax (modified): A DispatchTimeMax value of 0 indicates same day handling for an item, the timing of which depends on the order cut off time set in the seller's user preferences. For orders placed (and cleared payment received) before the local order cut off time, the item must be shipped by the end of the current day. For orders completed on or after the order cut off time, the item must be shipped by the end of the following day (excluding weekends and local holidays).
0807
2013-01-23
  • DispatchTimeMax (modified): A dispatch time value of '0' is not valid for use on eBay sites. If a listing with flat or calculated shipping has no handling time commitment, DispatchTimeMax is empty or is not returned.
0801
2012-11-28
  • Item.PictureDetails.PictureURL, Item.PictureDetails.ExternalPictureURL (modified): The maximum length of PictureURL and ExternalPictureURL has been increased from 150 to 500 characters.
0799
2012-11-07
  • ShippingDetailsType.InternationalShippingServiceOption (doc change): The description clarifies that a seller can offer up to four domestic shipping services and up to five international shipping services. However, if the seller is opted in to the Global Shipping Program, only four other international shipping services may be offered (regardless of whether or not Global Shipping is offered for the listing).
0797
2012-10-24
  • IncludeCrossPromotion (modified): This flag should no longer be used as eBay Store Cross Promotions are no longer supported in the Trading API. This field will be removed from the Trading WSDL and API Call Reference docs in a future release.
  • CrossPromotion (modified): This container is no longer applicable as eBay Store Cross Promotions are no longer supported in the Trading API. This container will be removed from the Trading WSDL and API Call Reference docs in a future release.
0793
2012-09-26
  • Item.HideFromSearch (added): This boolean field is returned as 'true' if the item is currently being hidden from Search on the eBay site.
  • Item.ReasonHideFromSearch (added): This enumeration value indicates why the item is currently being hidden from Search on the eBay site.
  • UnitInfo.UnitQuantity (modified): This field's type has changed from int to double.
0791
2012-09-12
  • InternationalShippingServiceOption.ShippingService (modified): New International shipping services added for UK and DE sites as part of the EU delivery estimate project. For UK, these new enumeration values are UK_ParcelForceIntlExpress, UK_ParcelForceIntlValue, and UK_ParcelForceIntlEconomy. For DE, these new enumeration values are DE_DeutschePostBriefIntlEcon and DE_DeutschePostBriefIntlPriority.
0789
2012-08-29
  • Item.ConditionDescription (added): This string field is used by the seller to more clearly describe the condition of items that are not brand new.
  • Item.RelistParentID (added): This Item ID value is the relisted item's parent (original) listing. This field is only returned for relisted items.
  • Item.ListingSubtype2 (doc change): A note was added to clarify that this value indicates a classified ad (or digital download) listing on ebay.com websites, not on ebayclassifieds.com. The ebayclassifieds.com site is not supported by the Trading API.
0787
2012-08-15
  • Item.IsIntermediatedShippingEligible (added): If true, this boolean field indicates that sellers can offer shipment via the Global Shipping Program for the current item.
  • Item.ShippingDetails.RateTableDetails (doc change): Documentation for this container and its fields has been revised to be more accurate and easier to understand.
  • Item.ShippingDetails.RateTableDetails.InternationalRateTable (added): This field specifies which international shipping rate table to apply to a listing. International rate tables can be used only for items listed on the DE or UK site, and the seller must have previously configured a table in My eBay site preferences. Shipping rate tables enable sellers to tailor the flat shipping rates offered for an item to fit the shipping destination. They can specify a base rate for a large region, then define alternative rates or surcharges for shipping to individual countries within the region.
0785
2012-08-01
  • Item.UnitInfo (added): This container includes the UnitType and UnitQuantity fields to provide information about the weight, volume or other quantity measurement of a listed item so buyers can compare per-unit prices. The European Union requires listings for certain types of products to include the price per unit.
0783
2012-07-18
  • ReturnPolicy.RestockingFeeValueOption (added): This enumeration value indicates the restocking fee charged by the seller for returned items. In order to charge the buyer a restocking fee when an item is returned, a US seller must input a restocking fee value as part of the return policy.
  • ReturnPolicy.RestockingFeeValue (added): This value is directly related to the RestockingFeeValueOption value, with the difference being that applications can use RestockingFeeValue to present the RestockingFeeValueOption value in a more user-friendly format.
0781
2012-07-04
  • ShippingDetails.GlobalShipping (added): Indicates whether eBay's Global Shipping Program is offered for a listing. If the value of GlobalShipping is True, the Global Shipping Program is the default international shipping option for the listing. If the value of GlobalShipping is False, the seller might have specified an alternative international shipping service for the listing, or no international shipping option at all.
  • ShippingServiceCodeType (modified): AU_StandardDeliveryFromOutsideAU added as a shipping service option. This option can be specified by sellers on the AU site if the item is being shipped from a location outside of Australia using standard delivery.
0765
2012-03-14
  • Item.Seller.SellerInfo.SellereBayPaymentProcessConsent (added): This response container is returned to DE/AT sellers ramped up in the new eBay payment process. This container consists of information related to the seller's signing of the supplemental user agreement and payout preferences.
  • Item.Seller.SellerInfo.SellereBayPaymentProcessStatus (added): This response field contains an enumeration value that indicates the current status of a DE or AT seller's account related to the new eBay payment process.
0763
2012-02-29
  • VariationSpecificPictureSet.ExternalPictureURL (added): Returned for self-hosted pictures in variations.
  • Item.SellerProfiles.SellerPaymentProfile (added): This container is returned if a Business Policies payment profile was applied to the listing. This feature is currently only available for testing in a Sandbox environment and will not be available in Production until May 2012.
  • Item.SellerProfiles.SellerReturnProfile (added): This container is returned if a Business Policies return policy profile was applied to the listing. This feature is currently only available for testing in a Sandbox environment and will not be available in Production until May 2012.
  • Item.SellerProfiles.SellerShippingProfile (added): This container is returned if a Business Policies shipping profile was applied to the listing. This feature is currently only available for testing in a Sandbox environment and will not be available in Production until May 2012.
  • Item.ShippingPackageDetails (added): If the seller is using calculated shipping, this container is used to specify the weight and dimensions of an item's shipping package. This feature is currently only available for testing in a Sandbox environment and will not be available in Production until May 2012.
0757
2012-01-18
  • VIN, VINLink, VRM, VRMLink (added): Fields for US, Canada, and UK eBay Motors vehicles (previously available as ID-based attributes).
0745
2011-10-26
  • SellingStatus.SoldAsBin (added): New flag to indicate if an auction item was sold to a seller using the Buy It Now option.
0735
2011-08-17
  • ItemSpecifics, AttributeSetArray (modified): Ticket listings return custom item specifics instead of ID-based attributes.
  • ReturnPolicy.RefundOption (modified): MoneyBackOrExchange value is now supported.
  • PaymentMethods (deprecated): StandardPaymentMethod is no longer returned.
0723
2011-05-25
  • DiscountPriceInfo (added): Added the ability to specify and view discount pricing values (DiscountPricingInfo) for an item, which gives the item either a Strike-Through Pricing (STP) or Minimum Advertised Price (MAP) display treatment. This feature is available to qualified sellers (and their associated developers) who participate in the Discount Pricing program. Once qualified, sellers can apply Discount Pricing to both MSKU and Non-MSKU items. STP is available on the US, UK, and DE sites while MAP is available only on the US site.
    This feature will be available mid-Summer, 2011. Sellers should contact their account manager or Customer Service to see if they qualify for the Strike-Through Pricing program. For more information, see Displaying Discount Pricing Information to Buyers.
0719
2011-04-27
  • ShippingServiceCodeType (modified): 15 new shipping services added for the Australia and Canada sites. The nine new Australia carrier-specific shipping services include AU_AusPostRegisteredPostInternationalPaddedBag1kg, AU_AusPostRegisteredPostInternationalPaddedBag500g, AU_AusPostRegisteredPostInternationalParcel, AU_AustralianAirExpressFlatRate1kg, AU_AustralianAirExpressFlatRate3kg, AU_AustralianAirExpressFlatRate5kg, AU_AustralianAirExpressMetro15kg, AU_eBayAusPost3kgFlatRateSatchel, and AU_eBayAusPost500gFlatRateSatchel. The nine new Australia generic service level shipping services include AU_EconomyDeliveryFromOutsideAU, AU_ExpeditedDeliveryFromOutsideAU, AU_ExpressDelivery, AU_Freight, and AU_StandardDelivery. The new Canada shipping service is CA_Freight.
  • Item.ShippingDetails.ShippingServiceOptions (modified): '4' has been added as a valid integer value to account for the additional international shipping service that may be specified by the seller.
  • Item.ShippingDetails.InternationalShippingServiceOption (modified): '4' and '5' have been added as valid integer values to account for the additional international shipping services that may be specified by the seller.
0691
2010-10-13
  • Item.PictureDetails.ExternalPictureURL (added): By late October, on sites with free gallery, if a listing uses a self-hosted picture (except in the case of a multi-variation listing), the picture will be copied to eBay Picture Services (EPS). This copy will be used as the picture at the top of the listing. If the copy fails, the original location is used.
0689
2010-09-20
  • ShippingType.ApplyShippingDiscount (deprecated): As of version 689, Item.ApplyShippingDiscount is deprecated and removed from the schema.
  • Item.SecondaryCategory (modified): Items in value categories can't be listed in two categories. eBay drops SecondaryCategory if either PrimaryCategory or SecondaryCategory is a value category (see ValueCategory in GetCategoryFeatures).
0685
2010-08-24
  • ShippingDetails.RateTableDetails (added): Sellers can now specify the use of domestic shipping rate tables, which are set up in eBay Site Preferences, to specify different rates for different special domestic locations. Applies to the following sites:
    DE, UK, US
  • ExcludeShipToLocation (modified): Sellers can now exclude special domestic locations from where they will ship items. Applies to the following sites:
    DE, UK, US
0679
2010-07-21
  • ItemType.QuantityThreshold, Itemtype.QuantityAvailableHint (added): Set a quantity threshold for the number of items available. As long as the number of items remains above the threshold, GetItem will return a quantity in the form, "More than n available," where n is the quantity threshold.
0663
2010-03-31
  • ShippingType.ApplyShippingDiscount (deprecated): This tag is no longer being used. It will be officially deprecated later in 2010.
0661
2010-03-17
  • ConditionID, ConditionDisplayName (added): ConditionID and ConditionDisplayName are supported in the Sandbox for a few categories. Starting in May 2010, they will be functional in production for most categories. These fields are used instead of AttributeSetArray and ItemSpecifics to specify the item's condition when GetCategoryFeatures shows ConditionEnabled=Enabled or Required for the listing's primary category.
0653
2010-01-26
  • IncludeItemCompatibilityList (added): Set to true in the request to retrieve all compatible applications specified for the item.
  • Item.ItemCompatibilityCount (added): Indicates the number of compatible applications specified for the given item. Not returned if the item has no specified compatible applications. Not returned if IncludeItemCompatibilityList is specified in the request.
  • Item.CompatibilityList (added): A list of parts compatibility information specified as name and value pairs. Describes an assembly with which the item is compatible (i.e., compatibility by application).
0635
2009-09-16
  • ExcludeShipToLocation, SellerExcludeShipToLocationsPreference (added): Sellers can now exclude specific regions and countries from where they will ship items.
  • InsuranceDetails, InsuranceFee, InsuranceOption, InternationalInsuranceDetails, InsuranceWanted, ShippingInsuranceCost (modified): Sellers can no longer give buyers the option to purchase shipping insurance for either domestic or international items. The buyer-paid shipping insurance option has been removed from the following sites:
    BEFR, BENL, CA, CAFR, HK, IE, IN, MY, Motors, NL, PH, PL, SG, UK, US
    Insurance tags are returned only when the associated item has buyer-paid shipping insurance values.
0629
2009-08-05
  • TopRatedSeller (added): Returned when seller is a Top-Rated Seller.
0627
2009-07-22
  • GetItemRequest.TransactionID (added): New field that allows a developer to retrieve the details of a specific transaction, even if the overall listing has been edited since the specific item was purchased.
0615
2008-04-29
  • Variations (added): New node that contains variations in a multi-variation listing.
  • Quantity, StartPrice, CurrentPrice (modified): Item.Quantity returns the total quantity across all variations, when variations are present. Item.StartPrice and other price fields return the price of the lowest-priced variation.
0609
2009-03-18
  • AttributeSetArray (modified): Starting in 2009, some categories may be converted from Attributes-enabled to custom Item Specifics-enabled. This means GetItem may return the data in Item.AttributeSetArray or in Item.ItemSpecifics (or both). See the 609 release notes for details.
0605
2009-02-18
  • NowAndNew (deprecated): Now & New (Sofort & Neu) has been retired as of this release.
  • (modified) A seller can now offer PayPal as a payment method for Adult Only items if the seller's registration site ID and registration address are in the US. A buyer can complete a transaction for an Adult Only listing with PayPal if the buyer's registration site ID and registration address are in the US.
0603
2009-02-04
  • Two enums in BuyerPaymentMethodCodeType (added): New payment methods: Paymate, Moneybookers.
  • Item.IntegratedMerchantCreditCardEnabled (added): Indicates that the IntegratedMerchantCreditCard payment method applies to the item.
0599
2009-1-07
  • NowAndNew (doc change): eBay will retire Now & New (Sofort & Neu) by March 2009.
0589
2008-10-29
  • Item.PaymentAllowedSite (added): Returned by GetItem, this field enables you to view the sites on which an item can be purchased.
0585
2008-10-01
  • Item.PaymentMethods (modified): PayOnPickup and ProPay have been added as new payment methods.
0581
2008-09-03
  • Item.ReturnPolicy (added): Specifies the seller's return policy.
  • Item.PictureDetails.GalleryDuration (modified): Sellers can specify the duration for Gallery Featured items. This is an expansion upon what was done with Italy on 565.
0573
2008-07-09
  • Item.DigitalDeliveryDetails, Item.ListingDetails.ExpressItemRequirements.NoDigitalDelivery (deprecated): The digital delivery feature is disabled as of March 28, 2008. GetItem no longer returns digital delivery details for digital download items.
0571
2008-06-25
  • Item.ShippingDetails.ShippingServiceOptions.ShippingService (added): Courier has been added for the UK site.
  • Item.ShippingDetails.ShippingServiceOptions.ShippingService (modified): On the US site, FreightOtherShipping has been deprecated. Freight is returned.
0565
2008-05-14
  • Item.ListingType (modified): Starting in early June 2008, on the Italy site, Store Inventory Format (StoresFixedPrice) items will be treated as basic fixed price (FixedPriceItem) items.
  • Item.PictureDetails.GalleryDuration (added): Starting in early June 2008, on the Italy site, sellers can specify the duration for Gallery Featured items.
0563
2008-04-30
  • Item.BuyerGuaranteePrice (added): On the Australia site, by early June 2008, BuyerGuaranteePrice is the PayPal Buyer Protection coverage, offered for the item at the time of purchase. Details of coverage are in the following sections of the View Item page: the Buy Safely section and the Payment Details section.
  • BuyerProtection.NoCoverage (added): On the Australia site, by early June 2008, indicates that there is no PayPal Buyer Protection coverage.
0561
2008-04-016
  • Item.ListingType.Express, Item.Seller.SellerInfo.ExpressSellerRequirements.BusinessSeller (deprecated): Due to the shutdown of UK and Germany eBay Express sites Item.ListingType.Express and BusinessSeller has been deprecated.
0559
2008-04-02
  • Item.BusinessSellerDetails (modified): GetItem now returns the seller's information (in a business card format) if the seller's SellerBusinessCodeType is set to 'Commercial'. This is only applicable for sites where Business Seller options are supported.
  • Item.CrossBorderTrade (added): For a fee, enables a listing to be displayed in the default search results of another eBay site. Applicable beginning in early May 2008.
  • Item.PictureDetails.PhotoDisplay.SuperSizePictureShow (modified): This value is no longer applicable. Returns SuperSize instead.
  • Item.PictureDetails.PhotoDisplay.SiteHostedPictureShow, Item.PictureDetails.PhotoDisplay.VendorHostedPictureShow (modified): These values are no longer applicable. Returns None instead.
0555
2008-03-05
  • ShippingServiceOptions.FreeShipping (added): This element is returned if FreeShipping was set to true for the first domestic shipping service option upon listing or relisting.
  • ShippingDetails.CODCost (added): Applicable beginning in April. Applies to the Italy site (site ID 101). Contains the cost of cash-on-delivery shipping.
0551
2008-02-07
  • Item.SellingStatus.AdminEnded (added): If included in the response as true, indicates that the listing was canceled due to a violation of eBay's listing policies and that the item can be relisted using RelistItem. GetItem will return an error (invalid item ID) in the response if Item.SellingStatus.AdminEnded is true and the requesting user is not the seller of the item. Applies to all eBay sites, including eBay Motors and Express (does not include Half.com).
  • Item.ItemPolicyViolation.PolicyID (added): If a violation of an eBay listing policy has occurred, indicates the integer ID of the violated policy in the response. Applies to all eBay sites, including eBay Motors and Express (does not include Half.com).
  • Item.ItemPolicyViolation.PolicyText (added): If a violation of an eBay listing policy has occurred, provides a textual description of the violated policy in the response. Applies to all eBay sites, including eBay Motors and Express (does not include Half.com).
  • Item.ShippingDetails.ShippingServiceOptions.FreeShipping (added): If included in the response as true, indicates free shipping for the shipping service option.
0537
2007-10-31
  • Item.MachanicalCheckAccepted (added): Indicates whether mechanical inspection services by RAC are allowed by the seller. Set by CARad on the UK site only.
  • Item.PaymentMethods.PaisaPayEscrow, Item.PaymentMethods.PaisaPayEscrowEMI (added): These enum will be returned for items offering PaisaPayEscrow and PaisaPayEscrowEMI payment methods.
  • BestOfferAutoAcceptPrice (added): The price at which best offers are automatically accepted.
0535
2007-10-17
  • Item.SellingStatus.HighBidder.EIASToken (added): This token is added in the response, as an enhancement for the Countdown application.
  • Item.Seller.PositiveFeedbackPercent (added): This token is added to the response as an enhancement to the Countdown application.
  • Status.Guest (added): The Guest enum can be returned in Item.SellingStatus.HighBidder.Status.
  • IncludeTaxTable (added): If no tax table is associated with the item, no tax table is returned, even if IncludeTaxTable is set to true. If a tax table is associated with the item:
    - the tax table is returned if DetailLevel is ReturnAll or ItemReturnDescription (and the value of IncludeTaxTable does not matter)
    - if no DetailLevel is specified or if DetailLevel is ItemReturnAttributes, the tax table is returned only if IncludeTaxTable is true
0533
2007-10-03
  • ShippingServiceCodeType (modified): The package size of "USPS flat rate envelope" (for eBay US listings) is now deprecated, and six new shipping services have been added to ShippingServiceCodeType for US domestic and international shipping: USPSExpressMailFlatRateEnvelope, USPSExpressMailInternationalFlatRateEnvelope, USPSPriorityMailFlatRateBox, USPSPriorityMailFlatRateEnvelope, USPSPriorityMailInternationalFlatRateBox, USPSPriorityMailInternationalFlatRateEnvelope. If a seller offers any of these flat rate services, the seller is required to specify a package weight, even though these services are weight- independent. This is because each service has a maximum weight limit and eBay validates the listed weight. The seller must specify a package size of Package/Thick Envelope when using calculated shipping.

    Migration: If a seller submits a request with the deprecated package size, it will be converted to Package/Thick envelope. USPS Priority Mail services will be converted to USPSPriorityMailFlatRateEnvelope (or its international counterpart, if appropriate). Likewise, USPS Express Mail services will be converted to USPSExpressMailFlatRateEnvelope (or its international counterpart). A non-blocking warning message will be returned to the seller in the API response. Active listings using USPS Flat Rate Envelope remain unaffected in the View Item and Checkout flows. eBay will internally treat it as a flat rate service when calculating the cost.
0531
2007-09-19
  • (doc change) The documentation has been updated to state that if a listing ended more than 90 days ago, its title, price, and other item information are not returned.
0523
2007-07-25
  • IncludeItemSpecifics (added): Causes the response to include the ItemSpecifics node (if the listing has custom Item Specifics).
0521
2007-07-11
  • Item.FinanceOfferID (deprecated): Finance-offer functionality has been deprecated with this version.
  • Item.ItemSpecifics (added): Lists custom Item Specifics (if any) in a listing.
0507
2007-04-04
  • PayPerLeadEnabled, ClassifiedAdContactByEmailEnabled, PayPerLeadPhoneNumber (added): Added for the pay-per-lead feature, applicable beginning in upcoming months on the US site.
  • Item.AttributeSetArray (modified): For Half.com listings, AttributeSetArray can return the Half.com item condition and the eBay item condition. Only the eBay condition is supported in other calls, like GetAttributesCS.
  • Item.PrimaryCategory (modified): For Half.com listings, the primary category is a Half.com category. PrimaryCategory doesn't return CategoryName for Half.com listings.
0503
2007-03-07
  • SellerType.SafePaymentExcempt (added): This field indicates whether a seller is exempt from providing a safe payment method. If a seller is exempt, any safe payment restrictions for a site or a category do not apply.
0499
2007-02-07
  • AnythingPoints, PromotedItem.PromotionPrice, PromotedItem.PromotionPriceType, PromotedItem.SelfHostedURL, ProximitySearchDetails.PostalCode, SellerKey, ShippingDetails.AllowPaymentEdit, ShippingDetails.SellerPostalCode, SiteHostedPicture, SkypeOption, VendorHostedPicture (modified): Deleted previously deprecated objects from the latest schema. Some of these objects are still supported with lower request versions. See Deprecated Objects.
  • Item.Storefront.StoreCategoryID, Item.Storefront.StoreCategory2ID (modified): The data types for IDs used for eBay Stores have changed from xs:int to xs:long to prepare for future increases in ID values.
  • ExtendedSellerContactDetails (added): Returns seller contact details.
  • ShippingDetails: ShippingDiscountProfileID, InternationalShippingDiscountProfileID, PromotionalShippingDiscount, InternationalPromotionalShippingDiscount, CalculatedShippingDiscount, InternationalCalculatedShippingDiscount, FlatShippingDiscount, InternationalFlatShippingDiscount, PromotionalShippingDiscountDetails (added): Read more about the many schema elements that have been added for the soon-to-be-available feature, Shipping Cost Discount Profiles.
0497
2007-01-24
  • Item.SellingStatus.PromotionalSaleDetails (added): If a seller has reduced the price of a listed item with the Promotional Price Display feature, this field contains the original price of the discounted item, along with the start-time and end-time of the discount.
0491
2006-12-13
  • Item.ListingCheckoutRedirectPreference.ProStoresStoreName (doc change): Added this existing field to the GetItem documentation.
  • Item.ListingDetails.ViewItemURLForNaturalSearch (added): A variation of ViewItemURL optimized for popular search engines.
  • Item.ShippingDetails.PaymentInstructions (doc change): Clarified the purpose of PaymentInstructions, that it can return values longer than 500 characters, and that it can be used without other shipping details (e.g., for eBay Motors vehicles).
  • Item.ShippingDetails.ThirdPartyCheckout (doc change): ThirdPartyCheckout is returned in ShippingDetails (not as a child of Item).
  • Item.CrossPromotion.StoreName (doc change): Not currently returned. Removed from output topic.
  • Item.Relisted, Item.RelistLink (doc change): Not returned. Removed from output topic.
  • Item.Seller.RegistrationAddress, Item.SellingStatus.HighBidder.RegistrationAddress, Item.SellerContactDetails, Item.SellingStatus.HighBidder.BuyerInfo.ShippingAddress (doc change): Removed CityName,StoreOrProvince, CompanyName, and Street1/Street2 fields from certain address nodes that don't return them.
  • Item.Seller.SellerInfo.BillingCurrency, Item.SellerInventoryID, Item.SellingStatus.HighBidder.MotorsDealer (doc change): Not returned. Removed from output topic.
  • Item.ShippingDetails (doc change): InternationalShippingServiceOption.ShippingInsuranceCost, SalesTax.SalesTaxAmount, SellingManagerSalesRecordNumber, ShippingRateType, and ShippingServiceOptions.ShippingInsuranceCost are not returned. Removed from output topic.
  • UserType (modified): Starting Jan 2007, selected tags in the User container will be made anonymous for listings that have a current price of $200.00 USD or higher. See Working with Anonymous User Information for a list of effected fields.
0485
2006-11-01
  • PromotedItem.PromotionDetails (added): Contains details about a promoted item for a given PromotionPriceType. Emitted for a request version of 485 or higher only. Replaces PromotedItem.PromotionPrice and PromotedItem.PromotionPriceType. PromotionDetails also includes BidCount for auction items and ConvertedPromotionPrice for items listed on sites different from the site specified in the request.
  • PromotedItem.TimeLeft (added): Indicates the time left before the listing for the cross-promoted item ends.
  • PromotedItem.PromotionPrice (deprecated): With a request version of 485 or higher, PromotionPrice is returned within a PromotionDetails container.
  • PromotedItem.PromotionPriceType (deprecated): With a request version of 485 or higher, PromotionPriceType is returned within a PromotionDetails container.
  • IncludeCrossPromotion (modified): With a request version of 485 or higher, the default value for IncludeCrossPromotion is false (do not include cross-promotion details in the response).
0483
2006-10-18
  • Item.AnythingPoints (deprecated): No longer returned as of request version 483.
  • Item.ProximitySearchDetails (deprecated): No longer returned as of request version 483. Use Item.PostalCode instead.
  • Item.ShippingDetails.SellerPostalCode (deprecated): No longer returned as of request version 483. Use Item.PostalCode instead.
  • Item.SellingStatus.FinalValueFee (modified): Documentation has been corrected; the field is not returned by GetItem.
0481
2006-10-04
  • Item.SellerGuaranteeLevel (doc change): See GetUser instead.
  • Item.ScheduleTime (doc change): Scheduled time is returned in StartTime.
0477
2006-09-06
  • MeasureType [attribute system] (deprecated): In MeasureType, the attribute system has been deprecated in favor of measurementSystem with a request version of 477. MeasureType is primarily used for package weight and dimensions. SDK users are strongly recommended to upgrade to the 477 WSDL to take advantage of the new attribute.
  • PromotionSchemeCodeType.RelatedCategoryRule (added): New output to identify Related Category as the scheme used for promoting items.
  • ListingType (modified): Chinese auction listings with Buy It Now are eligible for Express US.
  • ShippingTypes: CalculatedDomesticFlatInternational, FlatDomesticCalculatedInternational (added): Two more shipping types were introduced to enable a seller to use flat rate shipping for the domestic services and calculated shipping for the international shipping services, or vice versa. See the Managing Shipping documentation for details.
  • ShippingServiceOptions.ShippingSurcharge (added): A cost that the seller can add for flat rate shipping for eBay US and Motors Parts and Accessories. See the Managing Shipping documentation for details.
  • ShippingDetails.InternationalPackagingHandlingCosts (added): A means of distinguishing international packaging/handling costs from domestic costs. See the Managing Shipping documentation for details.
  • ShippingDetails.InsuranceDetails (added): A container of details about insurance for the domestic shipping services. See the Managing Shipping documentation for details.
  • ShippingDetails.InternationalInsuranceDetails (added): A container of details about insurance for the international shipping services.
0475
2006-8-23
  • IncludeExpressRequirements (added): Indicates if the response should include detailed information relating to whether an item qualifies as an Express listing.
  • Item.ListingDetails.ExpressItemRequirements (added): Contains detailed data relating to whether an item qualifies as an Express listing.
0471
2006-7-26
  • Item.ApplyShippingDiscount (doc change): Only returned in the Item.ShippingDetails node (not at the Item level).
  • Item.MinimumBestOfferPrice (doc change): Only returned if you are the seller who listed the item.
  • Item.SellingStatus.HighBidder.SellerInfo (doc change): Not returned by this call. Removed from the documentation. (The appinfo.CallInfo.Context was incorrect in the schema annotation.)
  • Item.PictureDetails.GalleryType.Plus (added): Indicates that the listing image displays in the search results Gallery with a large preview image on mouseover.
0469
2006-7-12
  • Item.Seller.SellerInfo.ExpressWallet (added): Indicates whether the seller has an Express wallet.