GetSellerEvents
Use this call to retrieve a list of the items on which a seller event has occurred. A seller event includes actions such as a revision to the item (e.g., a description change), a price change (through a bid), or the ending of an item's listing.
Short-duration call rate limit: To protect eBay's infrastructure and servers from being overloaded and/or destabilized, the GetSellerEvents call has a short-duration call rate limit to restrict bursts of very high traffic.Per (seller) user ID, no more than 1000 GetSellerEvents calls can be executed within any 15-second interval. If this call rate limit is exceeded at any time, the application making the called is blocked. Each time an application is blocked, the user/application must wait until the block is reset after 15 seconds. This short-duration call rate limit applies to all seller accounts, and sellers/developers cannot appeal or request for a higher limit.
GetSellerEvents returns individual item data in an ItemArray object. Item data is retrieved for only the authenticated user of the call. GetSellerEvents returns zero or more items, depending on the items that have seller events within the specified time range. You can add filters so the data returned includes only items that start, end, or are modified within a certain time span.
Usage Details
Each of the date-range filters is individually optional, but a given call to GetSellerEvents must use at least one date-range filter. Multiple date-range filters may not be used in the same call.
- Use the EndTimeFrom and EndTimeTo input properties to limit the items returned to just those where the listing ends between the two dates.
- Use the StartTimeFrom and StartTimeTo input properties to limit the items returned to just those where the listing started between the two dates.
- Use the ModTimeFrom and ModTimeTo input properties to limit the items returned to just those where the listing was modified between the two dates.
Working With the Response
GetSellerEvents returns a list of the sellers event items into an ItemArray container. The Quantity element is only returned if it was set by the seller or by eBay.
An application might process the response in the following sequence:
- Traverse the collection to visit each Item object contained in the ItemArray container.
- Inspect the properties of each Item object to get the desired values for the listing.
- As applicable for the application, store the appropriate item data. If data for the same listing is already stored, update it with the new data. Comparing the new incoming data for a listing with the previously stored data allows the application to indicate to the seller what information has changed.
Best Practices
- Applications should use the EndTimeFrom and EndTimeTo input fields, or ModTimeFrom and ModTimeTo input fields, to ensure that each unique item is retrieved only once.
- Use the ModTime filter more frequently than the EndTime filter because ModTime events are indexed.
See the following FAQ for extra details: Best Practices for GetSellerEvents and GetSellerTransactions
Testing GetSellerEvents
Test GetSellerEvents in the Sandbox as follows:
- Register a Sandbox user (seller) and add at two or three new items for the test seller using AddItem.
- Some data values are returned only if the call requestor is the item seller. To test the call from the perspective of another user, execute the call using a Sandbox test user other than the one used to list the item.
- Use a second and third Sandbox test user to perform actions that translate into seller events, such as bidding on a auction. (The seller of an item cannot bid on his or her own item, a rule that is also enforced in the Sandbox.)
- For applications that create and use competitive-bid item listings (auctions), bid on the items using the Sandbox user interface before retrieving the item using GetSellerEvents. This will populate the high bidder data for items in the result set.
Related Information
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"?> <GetSellerEventsRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <!-- Call-specific Input Fields --> <EndTimeFrom> dateTime </EndTimeFrom> <EndTimeTo> dateTime </EndTimeTo> <HideVariations> boolean </HideVariations> <IncludeVariationSpecifics> boolean </IncludeVariationSpecifics> <IncludeWatchCount> boolean </IncludeWatchCount> <ModTimeFrom> dateTime </ModTimeFrom> <ModTimeTo> dateTime </ModTimeTo> <NewItemFilter> boolean </NewItemFilter> <StartTimeFrom> dateTime </StartTimeFrom> <StartTimeTo> dateTime </StartTimeTo> <!-- 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> </GetSellerEventsRequest>
| Argument | Type | Occurrence | Meaning |
|---|
Either the StartTimeFrom, EndTimeFrom, or ModTimeFrom filter must be specified. If you do not specify the corresponding To filter, it is set to the time you make the call.
For better results, the time range you use should be less than 48 hours. If 3000 or more items are found, use a smaller time range.
Include a 2-minute, overlapping buffer between requests. For example, if EndTimeTo was 6:58 in a prior request, the current request should use 6:56 in EndTimeFrom (e.g., use ranges like 5:56-6:58, 6:56-7:58, 7:56-8:58).
See KB article: Best Practices for GetSellerEvents and GetSellerTransactions.
If you specify the corresponding From filter, but you do not include EndTimeTo, then EndTimeTo is set to the time you make the call.
If false (or not specified), eBay returns variation details (if any). In this case, the amount of detail can be controlled by using IncludeVariationSpecifics.
If true, variation details are not returned (and IncludeVariationSpecifics has no effect). This may be useful for applications that use other calls, notifications, alerts, or reports to track price and quantity details.
Default: false.
If false (or not specified), eBay keeps the response as small as possible by not returning Variation.VariationSpecifics. It only returns Variation.SKU as an identifier (along with the variation price and other selling details). If the variation has no SKU, then Variation.VariationSpecifics is returned as the variation's unique identifier.
If true, Variation.VariationSpecifics is returned. (Variation.SKU is also returned, if the variation has a SKU.) This may be useful for applications that don't track variations by SKU.
Ignored when HideVariations is set to true.
Note: If the seller includes a large number of variations in many listings, using this flag may degrade the call's performance. Therefore, when you use this flag, you may need to reduce the total number of items you're requesting at once. For example, you may need to use shorter time ranges in the StartTimeFrom, EndTimeFrom, or ModTimeFrom filters.
Default: false.
true if that seller wants to see how many prospective bidders/buyers currently have an item added to their Watch Lists. The Watch count is returned in the WatchCount field for each item in the response.
Include a 2-minute, overlapping buffer between requests. For example, if ModTimeTo was 6:58 in a prior request, the current request should use 6:56 in ModTimeFrom (e.g., use ranges like 5:56-6:58, 6:56-7:58, 7:56-8:58).
For better results, the time range you use should be less than 48 hours. If 3000 or more items are found, use a smaller time range.
If an unexpected item is returned (including an old item or an unchanged active item), please ignore the item. Although a maintenance process may have triggered a change in the modification time, item characteristics are unchanged.
See KB article: Best Practices for GetSellerEvents and GetSellerTransactions.
Either the StartTimeFrom, EndTimeFrom, or ModTimeFrom filter must be specified.
If you do not specify the corresponding To filter, it is set to the time you make the call.
For better results, the time period you use should be less than 48 hours. If 3000 or more items are found, use a smaller time range.
Include a 2-minute, overlapping buffer between requests. For example, if StartTimeTo was 6:58 in a prior request, the current request should use 6:56 in StartTimeFrom (e.g., use ranges like 5:56-6:58, 6:56-7:58, 7:56-8:58).
See KB article: Best Practices for GetSellerEvents and GetSellerTransactions.
| 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: (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.
|
||||||||||||||||||||||||||||||||||||||||
| 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: 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:
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:
|
||||||||||||||||||||||||||||||||||||||||
| 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 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 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"?> <GetSellerEventsResponse xmlns="urn:ebay:apis:eBLBaseComponents"> <!-- Call-specific Output Fields --> <ItemArray> ItemArrayType <Item> ItemType <BestOfferDetails> BestOfferDetailsType <BestOfferCount> int </BestOfferCount> <BestOfferEnabled> boolean </BestOfferEnabled> </BestOfferDetails> <BuyItNowPrice currencyID="CurrencyCodeType"> AmountType (double) </BuyItNowPrice> <Currency> CurrencyCodeType </Currency> <eBayPlus> boolean </eBayPlus> <eBayPlusEligible> boolean </eBayPlusEligible> <HitCount> long </HitCount> <IsSecureDescription> boolean </IsSecureDescription> <ItemID> ItemIDType (string) </ItemID> <ListingDetails> ListingDetailsType <EndTime> dateTime </EndTime> <StartTime> dateTime </StartTime> </ListingDetails> <ListingType> ListingTypeCodeType </ListingType> <Quantity> int </Quantity> <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 <BidCount> int </BidCount> <CurrentPrice currencyID="CurrencyCodeType"> AmountType (double) </CurrentPrice> <HighBidder> UserType <Email> string </Email> <FeedbackScore> int </FeedbackScore> <UserAnonymized> boolean </UserAnonymized> <UserID> UserIDType (string) </UserID> </HighBidder> <ListingStatus> ListingStatusCodeType </ListingStatus> <QuantitySold> int </QuantitySold> </SellingStatus> <Site> SiteCodeType </Site> <Title> string </Title> <Variations> VariationsType <Variation> VariationType <Quantity> int </Quantity> <SellingStatus> SellingStatusType <BidCount> int </BidCount> <CurrentPrice currencyID="CurrencyCodeType"> AmountType (double) </CurrentPrice> <HighBidder> UserType <Email> string </Email> <FeedbackScore> int </FeedbackScore> <UserAnonymized> boolean </UserAnonymized> <UserID> UserIDType (string) </UserID> </HighBidder> <ListingStatus> ListingStatusCodeType </ListingStatus> <QuantitySold> int </QuantitySold> </SellingStatus> <SKU> SKUType (string) </SKU> <StartPrice currencyID="CurrencyCodeType"> AmountType (double) </StartPrice> <VariationProductListingDetails> VariationProductListingDetailsType <EAN> string </EAN> <ISBN> string </ISBN> <UPC> string </UPC> </VariationProductListingDetails> <VariationSpecifics> NameValueListArrayType <NameValueList> NameValueListType <Name> string </Name> <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 ... --> </Variations> <WatchCount> long </WatchCount> </Item> <!-- ... more Item nodes allowed here ... --> </ItemArray> <TimeTo> dateTime </TimeTo> <!-- 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> </GetSellerEventsResponse>
| Return Value | Type | Occurrence | Meaning |
|---|
If 1 to 2999 items are returned, then the results are complete. If 3000 or more items are returned, it usually means additional items exist within the time range you requested, but they were not all returned.
To retrieve complete results, use a smaller time range in the request so that fewer than 3000 are returned per response.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
See KB article: Best Practices for GetSellerEvents and GetSellerTransactions.
repeatable: [0..3000] Contains the data properties that define one item listing. GetSellerEvents and GetSellerList only return items if any are available for the seller within the time window specified in the request.
Some optional fields are only returned if the seller defined them for the item. Some fields are only returned under particular conditions specified in the individual field descriptions. For example, a buyer's contact information might only be returned if the member who is making the request (as identified in the eBayAuthToken) has an order relationship with that buyer.
For calls that support detail levels, the set of fields returned is also controlled by the value of DetailLevel in the request. For some calls, other parameters in the request can also control the data returned for each item. For example, GranularityLevel controls the fields to return for each item in the GetSellerList response.
Note: When making a GetSellerList call, items that are on-hold due to an eBay policy violation will not be returned in the response.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
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: ReturnAll.
[ attribute currencyID ] CurrencyCodeType 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.
For a list of possible enumeration values, see 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: ReturnAll. Also returned if DetailLevel is not provided on input.
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. See eBayPlusEligible to detemine the whether the item is eligible for the eBay Plus program.
See:
eBay Plus for more details
Selling with eBay Plus (Australia help page)
.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 determines which listings qualify for eBay Plus based on whether the buyer has an active eBay Plus subscription and whether the listing meets the program's requirements. See eBay Plus for listing requirements. Note: Currently, eBay Plus is available only to buyers in Germany and Australia marketplaces.
See eBay Plus for more details.
We recommend that you use the getTrafficReport method of the Analytics API to return user traffic details received by a seller's listings. This RESTful method returns metrics such as click-through rate, listing impressions, listing views, sales conversion rate, and the number of completed transactions.
Note: This field is only returned to authorized applications.
DetailLevel: ReturnAll.
.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.
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: ReturnAll. Also returned if DetailLevel is not provided on input.
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: ReturnAll. Also returned if DetailLevel is not provided on input.
.EndTime dateTime Conditionally 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: ReturnAll. Also returned if DetailLevel is not provided on input.
.StartTime dateTime Conditionally The StartTime value returned by non-search calls such as GetItem is the time stamp (in GMT) for when the item was listed.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
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: ReturnAll.
See Listing types.
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: ReturnAll. Also returned if DetailLevel is not provided on input.
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.
.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.
.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.
.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.
.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.
.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.
.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.
.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 information, and excluded ship-to locations. Multiple shipping business policies can be created and saved at the account level by sellers.
Note: Any shipping inclusions specified through this container can be overridden by the eBay International Shipping exclusions toggle located under Shipping Preferences in My eBay. For more information on eBay International Shipping, see eBay International Shipping program. 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.
.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.
.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.
.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: ReturnAll.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.BidCount int Conditionally Number of bids placed so far against the auction item.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.CurrentPrice AmountType (double) 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.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.CurrentPrice
[ attribute currencyID ] CurrencyCodeType 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.
For a list of possible enumeration values, see CurrencyCodeType.
.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: ReturnAll.
.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: ReturnAll.
.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: ReturnAll.
.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.
.HighBidder.UserID UserIDType (string) Conditionally Unique eBay user ID for the user.
Note: Effective September 26, 2025, select developers will no longer receive username data for U.S. users through this field. Instead, an immutable user ID will be returned in its place. For more information, please refer to Data Handling Compliance.
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: ReturnAll.
.ListingStatus ListingStatusCodeType Conditionally 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:
Code so that your app gracefully handles any future changes to this list.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.QuantitySold int Conditionally 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: ReturnAll. Also returned if DetailLevel is not provided on input.
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: ReturnAll. Also returned if DetailLevel is not provided on input.
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: ReturnAll. Also returned if DetailLevel is not provided on input.
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: ReturnAll. Also returned if DetailLevel is not provided on input.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
.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
0when 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
0when the listing ended, the relisted item will retain the Variaton.Quantity value that was passed in at creation time of the previous listing.
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: ReturnAll. Also returned if DetailLevel is not provided on input.
See:
Set and adjust a variation's quantity
Out-of-Stock control
.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.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.Variation.SellingStatus
.BidCount int Conditionally Number of bids placed so far against the auction item.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.Variation.SellingStatus
.CurrentPrice AmountType (double) 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.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.Variation.SellingStatus
.CurrentPrice
[ attribute currencyID ] CurrencyCodeType 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.
For a list of possible enumeration values, see CurrencyCodeType.
.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).
DetailLevel: ReturnAll.
.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: ReturnAll.
.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: ReturnAll.
.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.
.Variation.SellingStatus
.HighBidder.UserID UserIDType (string) Conditionally Unique eBay user ID for the user.
Note: Effective September 26, 2025, select developers will no longer receive username data for U.S. users through this field. Instead, an immutable user ID will be returned in its place. For more information, please refer to Data Handling Compliance.
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: ReturnAll.
.Variation.SellingStatus
.ListingStatus ListingStatusCodeType Conditionally 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:
Code so that your app gracefully handles any future changes to this list.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.Variation.SellingStatus
.QuantitySold int Conditionally 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: ReturnAll. Also returned if DetailLevel is not provided on input.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
See SKU identifiers.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
See Pricing.
.Variation.StartPrice
[ attribute currencyID ] CurrencyCodeType Always
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.
.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.
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: ReturnAll. Also returned if DetailLevel is not provided on input.
.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 an EAN value, but one doesn't exist for the product, the seller must provide a string indicating that the product identifier is unavailable. This text varies by marketplace. Refer to Product Identifier Text for the specific text based on the listing marketplace.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.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 an ISBN value, but one doesn't exist for the product, the seller must provide a string indicating that the product identifier is unavailable. This text varies by marketplace. Refer to Product Identifier Text for the specific text based on the listing marketplace.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.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 a UPC value, but one doesn't exist for the product, the seller must provide a string indicating that the product identifier is unavailable. This text varies by marketplace. Refer to Product Identifier Text for the specific text based on the listing marketplace.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
See:
Configure variation-selection widgets for buyers (View Item)
Revise and relist with 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.
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.
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
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
.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: ReturnAll. Also returned if DetailLevel is not provided on input.
true in the request. Returned by GetMyeBaySelling only if greater than 0.
DetailLevel: ReturnAll.
DetailLevel: ReturnAll. Also returned if DetailLevel is not provided on input.
Applicable values:
(Not all values in AckCodeType apply to this field.)
Code so that your app gracefully handles any future changes to this list.
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.
repeatable: [0..*] A list of application-level errors (if any) that occurred when eBay processed the request.
Applicable values:
Code so that your app gracefully handles any future changes to this list.
See Errors By Number.
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.
[ 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.
Applicable values:
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.
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.
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.
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.
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.
The following sample returns listings that had any type of action occur (listing creation, listing revision, sale, ended listing) within the specified time period. In this example, a ModTimeFrom filter is used, but no ModTimeTo filter, so this time defaults to the present time. Note that fixed-price (GTC) listings that are automatically renewed by eBay each month count as a 'listing revision' or action/event.
The response includes only items listed by the authorized user of the call. With DetailLevel set to ReturnAll, all applicable fields are included in the response.
Input
XML format.
<?xml version="1.0" encoding="utf-8"?>
<GetSellerEventsRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>A*******3</eBayAuthToken>
</RequesterCredentials>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<ModTimeFrom>2019年06月01日T00:00:01.000Z</ModTimeFrom>
<DetailLevel>ReturnAll</DetailLevel>
</GetSellerEventsRequest>
Output
XML format.
<?xml version="1.0" encoding="UTF-8"?>
<GetSellerEventsResponse
xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2019年11月05日T18:10:12.440Z</Timestamp>
<Ack>Success</Ack>
<Version>1131</Version>
<Build>E1131_CORE_APISELLING_19099826_R1</Build>
<TimeTo>2019年11月05日T18:10:11.830Z</TimeTo>
<ItemArray>
<Item>
<ItemID>1**********3</ItemID>
<ListingDetails>
<StartTime>2018年09月08日T19:44:06.000Z</StartTime>
<EndTime>2019年11月08日T19:44:06.000Z</EndTime>
</ListingDetails>
<SellingStatus>
<BidCount>0</BidCount>
<CurrentPrice currencyID="USD">25.0</CurrentPrice>
<QuantitySold>0</QuantitySold>
<ListingStatus>Active</ListingStatus>
</SellingStatus>
<Site>US</Site>
<Title>Brinn's First Lady Gown Series Emily Tennessee Donelson</Title>
<Quantity>1</Quantity>
<Currency>USD</Currency>
<ListingType>StoresFixedPrice</ListingType>
<BestOfferDetails>
<BestOfferCount>0</BestOfferCount>
<BestOfferEnabled>true</BestOfferEnabled>
</BestOfferDetails>
<HitCounter>NoHitCounter</HitCounter>
<SellerProfiles>
<SellerShippingProfile>
<ShippingProfileID>1**********0</ShippingProfileID>
<ShippingProfileName>C*********************************************0</ShippingProfileName>
</SellerShippingProfile>
<SellerReturnProfile>
<ReturnProfileID>1**********0</ReturnProfileID>
<ReturnProfileName>R******************************************r</ReturnProfileName>
</SellerReturnProfile>
<SellerPaymentProfile>
<PaymentProfileID>3*********0</PaymentProfileID>
<PaymentProfileName>P******************y</PaymentProfileName>
</SellerPaymentProfile>
</SellerProfiles>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
</Item>
<Item>
<ItemID>1**********5</ItemID>
<ListingDetails>
<StartTime>2018年09月21日T17:57:57.000Z</StartTime>
<EndTime>2019年11月21日T17:57:57.000Z</EndTime>
</ListingDetails>
<SellingStatus>
<BidCount>0</BidCount>
<CurrentPrice currencyID="USD">22.0</CurrentPrice>
<QuantitySold>0</QuantitySold>
<ListingStatus>Active</ListingStatus>
</SellingStatus>
<Site>US</Site>
<Title>Brinn's Musical Calendar Miss Doll May 1986 - "Rose Garden"</Title>
<Quantity>1</Quantity>
<Currency>USD</Currency>
<ListingType>StoresFixedPrice</ListingType>
<BestOfferDetails>
<BestOfferCount>0</BestOfferCount>
<BestOfferEnabled>true</BestOfferEnabled>
</BestOfferDetails>
<HitCounter>NoHitCounter</HitCounter>
<SellerProfiles>
<SellerShippingProfile>
<ShippingProfileID>1**********0</ShippingProfileID>
<ShippingProfileName>C***************************************2</ShippingProfileName>
</SellerShippingProfile>
<SellerReturnProfile>
<ReturnProfileID>1**********0</ReturnProfileID>
<ReturnProfileName>R******************************************r</ReturnProfileName>
</SellerReturnProfile>
<SellerPaymentProfile>
<PaymentProfileID>3*********0</PaymentProfileID>
<PaymentProfileName>P******************y</PaymentProfileName>
</SellerPaymentProfile>
</SellerProfiles>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
</Item>
<Item>
<ItemID>1**********8</ItemID>
<ListingDetails>
<StartTime>2018年09月28日T16:47:22.000Z</StartTime>
<EndTime>2019年11月28日T16:47:22.000Z</EndTime>
</ListingDetails>
<SellingStatus>
<BidCount>0</BidCount>
<CurrentPrice currencyID="USD">19.95</CurrentPrice>
<QuantitySold>2</QuantitySold>
<ListingStatus>Active</ListingStatus>
</SellingStatus>
<Site>US</Site>
<Title>M.I. Hummel "Sisters" Collector Plates - The Danbury Mint</Title>
<Quantity>2</Quantity>
<Currency>USD</Currency>
<ListingType>StoresFixedPrice</ListingType>
<BestOfferDetails>
<BestOfferCount>1</BestOfferCount>
<BestOfferEnabled>true</BestOfferEnabled>
</BestOfferDetails>
<HitCounter>NoHitCounter</HitCounter>
<SellerProfiles>
<SellerShippingProfile>
<ShippingProfileID>1**********0</ShippingProfileID>
<ShippingProfileName>C***************************************2</ShippingProfileName>
</SellerShippingProfile>
<SellerReturnProfile>
<ReturnProfileID>1**********0</ReturnProfileID>
<ReturnProfileName>R********************************************0</ReturnProfileName>
</SellerReturnProfile>
<SellerPaymentProfile>
<PaymentProfileID>1**********0</PaymentProfileID>
<PaymentProfileName>e*************************s</PaymentProfileName>
</SellerPaymentProfile>
</SellerProfiles>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
</Item>
<Item>
<ItemID>1**********8</ItemID>
<ListingDetails>
<StartTime>2019年06月10日T19:29:18.000Z</StartTime>
<EndTime>2019年11月04日T17:33:35.000Z</EndTime>
</ListingDetails>
<SellingStatus>
<BidCount>0</BidCount>
<CurrentPrice currencyID="USD">28.0</CurrentPrice>
<QuantitySold>1</QuantitySold>
<HighBidder>
<UserID>p********d</UserID>
<UserAnonymized>false</UserAnonymized>
<Email>j********@*****.com</Email>
<FeedbackScore>22</FeedbackScore>
</HighBidder>
<ListingStatus>Completed</ListingStatus>
</SellingStatus>
<Site>US</Site>
<Title>Electronic, Animated Sleeping, Snoring, Whistling Mrs. Claus in Box</Title>
<Quantity>1</Quantity>
<Currency>USD</Currency>
<ListingType>StoresFixedPrice</ListingType>
<BestOfferDetails>
<BestOfferCount>1</BestOfferCount>
<BestOfferEnabled>true</BestOfferEnabled>
</BestOfferDetails>
<HitCounter>NoHitCounter</HitCounter>
<SellerProfiles>
<SellerShippingProfile>
<ShippingProfileID>1**********0</ShippingProfileID>
<ShippingProfileName>C***************************************1</ShippingProfileName>
</SellerShippingProfile>
<SellerReturnProfile>
<ReturnProfileID>1**********0</ReturnProfileID>
<ReturnProfileName>R******************************************r</ReturnProfileName>
</SellerReturnProfile>
<SellerPaymentProfile>
<PaymentProfileID>1**********0</PaymentProfileID>
<PaymentProfileName>e***************************************s</PaymentProfileName>
</SellerPaymentProfile>
</SellerProfiles>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
</Item>
<Item>
<ItemID>1**********3</ItemID>
<ListingDetails>
<StartTime>2019年06月10日T18:49:25.000Z</StartTime>
<EndTime>2019年10月09日T23:10:25.000Z</EndTime>
</ListingDetails>
<SellingStatus>
<BidCount>0</BidCount>
<CurrentPrice currencyID="USD">27.0</CurrentPrice>
<QuantitySold>1</QuantitySold>
<HighBidder>
<UserID>n********8</UserID>
<UserAnonymized>false</UserAnonymized>
<Email>n********@*****.com</Email>
<FeedbackScore>58</FeedbackScore>
</HighBidder>
<ListingStatus>Completed</ListingStatus>
</SellingStatus>
<Site>US</Site>
<Title>Electronic, Animated Sleeping, Snoring, Whistling Santa Claus in Box</Title>
<Quantity>1</Quantity>
<Currency>USD</Currency>
<ListingType>StoresFixedPrice</ListingType>
<BestOfferDetails>
<BestOfferCount>1</BestOfferCount>
<BestOfferEnabled>true</BestOfferEnabled>
</BestOfferDetails>
<HitCounter>NoHitCounter</HitCounter>
<SellerProfiles>
<SellerShippingProfile>
<ShippingProfileID>3*********0</ShippingProfileID>
<ShippingProfileName>C*************************************y</ShippingProfileName>
</SellerShippingProfile>
<SellerReturnProfile>
<ReturnProfileID>1**********0</ReturnProfileID>
<ReturnProfileName>R******************************************r</ReturnProfileName>
</SellerReturnProfile>
<SellerPaymentProfile>
<PaymentProfileID>1**********0</PaymentProfileID>
<PaymentProfileName>e***************************************s</PaymentProfileName>
</SellerPaymentProfile>
</SellerProfiles>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
</Item>
<Item>
<ItemID>1**********1</ItemID>
<ListingDetails>
<StartTime>2018年09月08日T19:03:45.000Z</StartTime>
<EndTime>2019年11月08日T19:03:45.000Z</EndTime>
</ListingDetails>
<SellingStatus>
<BidCount>0</BidCount>
<CurrentPrice currencyID="USD">16.0</CurrentPrice>
<QuantitySold>1</QuantitySold>
<HighBidder>
<UserID>o********a</UserID>
<UserAnonymized>false</UserAnonymized>
<Email>r********@*****.com</Email>
<FeedbackScore>1933</FeedbackScore>
</HighBidder>
<ListingStatus>Active</ListingStatus>
</SellingStatus>
<Site>US</Site>
<Title>Brinn's First Lady Gown Series Martha Jefferson Randolf</Title>
<Quantity>2</Quantity>
<Currency>USD</Currency>
<ListingType>StoresFixedPrice</ListingType>
<BestOfferDetails>
<BestOfferCount>0</BestOfferCount>
<BestOfferEnabled>true</BestOfferEnabled>
</BestOfferDetails>
<HitCounter>NoHitCounter</HitCounter>
<SellerProfiles>
<SellerShippingProfile>
<ShippingProfileID>1**********0</ShippingProfileID>
<ShippingProfileName>C*********************************************0</ShippingProfileName>
</SellerShippingProfile>
<SellerReturnProfile>
<ReturnProfileID>1**********0</ReturnProfileID>
<ReturnProfileName>R******************************************r</ReturnProfileName>
</SellerReturnProfile>
<SellerPaymentProfile>
<PaymentProfileID>3*********0</PaymentProfileID>
<PaymentProfileName>P******************y</PaymentProfileName>
</SellerPaymentProfile>
</SellerProfiles>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
</Item>
<Item>
<ItemID>1**********6</ItemID>
<ListingDetails>
<StartTime>2018年09月21日T17:48:38.000Z</StartTime>
<EndTime>2019年11月21日T17:48:38.000Z</EndTime>
</ListingDetails>
<SellingStatus>
<BidCount>0</BidCount>
<CurrentPrice currencyID="USD">15.0</CurrentPrice>
<QuantitySold>1</QuantitySold>
<HighBidder>
<UserID>s*****</UserID>
<UserAnonymized>false</UserAnonymized>
<Email>s********@*****.com</Email>
<FeedbackScore>5</FeedbackScore>
</HighBidder>
<ListingStatus>Active</ListingStatus>
</SellingStatus>
<Site>US</Site>
<Title>Brinn's Musical Calendar Miss Doll September 1986 - "September Song"</Title>
<Quantity>1</Quantity>
<Currency>USD</Currency>
<ListingType>StoresFixedPrice</ListingType>
<BestOfferDetails>
<BestOfferCount>1</BestOfferCount>
<BestOfferEnabled>true</BestOfferEnabled>
</BestOfferDetails>
<HitCounter>NoHitCounter</HitCounter>
<SellerProfiles>
<SellerShippingProfile>
<ShippingProfileID>1**********0</ShippingProfileID>
<ShippingProfileName>C***************************************2</ShippingProfileName>
</SellerShippingProfile>
<SellerReturnProfile>
<ReturnProfileID>1**********0</ReturnProfileID>
<ReturnProfileName>R******************************************r</ReturnProfileName>
</SellerReturnProfile>
<SellerPaymentProfile>
<PaymentProfileID>3*********0</PaymentProfileID>
<PaymentProfileName>P******************y</PaymentProfileName>
</SellerPaymentProfile>
</SellerProfiles>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
</Item>
<Item>
<ItemID>1**********0</ItemID>
<ListingDetails>
<StartTime>2018年09月08日T18:33:47.000Z</StartTime>
<EndTime>2019年11月08日T18:33:47.000Z</EndTime>
</ListingDetails>
<SellingStatus>
<BidCount>0</BidCount>
<CurrentPrice currencyID="USD">23.0</CurrentPrice>
<QuantitySold>1</QuantitySold>
<HighBidder>
<UserID>c*****</UserID>
<UserAnonymized>false</UserAnonymized>
<Email>m********@*****.com</Email>
<FeedbackScore>180</FeedbackScore>
</HighBidder>
<ListingStatus>Active</ListingStatus>
</SellingStatus>
<Site>US</Site>
<Title>Brinn's American Tradition First Lady Gown Series Dolley Payne Madison</Title>
<Quantity>2</Quantity>
<Currency>USD</Currency>
<ListingType>StoresFixedPrice</ListingType>
<BestOfferDetails>
<BestOfferCount>0</BestOfferCount>
<BestOfferEnabled>true</BestOfferEnabled>
</BestOfferDetails>
<HitCounter>NoHitCounter</HitCounter>
<SellerProfiles>
<SellerShippingProfile>
<ShippingProfileID>1**********0</ShippingProfileID>
<ShippingProfileName>C***************************************2</ShippingProfileName>
</SellerShippingProfile>
<SellerReturnProfile>
<ReturnProfileID>1**********0</ReturnProfileID>
<ReturnProfileName>R******************************************r</ReturnProfileName>
</SellerReturnProfile>
<SellerPaymentProfile>
<PaymentProfileID>3*********0</PaymentProfileID>
<PaymentProfileName>P******************y</PaymentProfileName>
</SellerPaymentProfile>
</SellerProfiles>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
</Item>
</ItemArray>
</GetSellerEventsResponse>
Change History
| Change Date | Description |
|---|---|
| 1323 2023年08月25日 |
|
| 1257 2022年05月06日 |
|
| 1247 2022年02月25日 |
|
| 1091 2019年01月18日 |
|
| 1039 2017年10月17日 |
|
| 1027 2017年08月04日 |
|
| 0933 2015年07月24日 |
|
| 0925 2015年05月29日 |
|
| 0897 2014年10月21日 |
|
| 0763 2012年02月29日 |
|
| 0675 2010年06月23日 |
|
| 0669 2010年05月12日 |
|
| 0629 2009年08月05日 |
|
| 0561 2008年04月16日 |
|
| 0555 2008年03月05日 |
|
| 0491 2006年12月13日 |
|
| 0453 2006年03月22日 |
|
| 0447 2006年02月08日 |
|
| 0431 2005年10月19日 |
|
| 0427 2005年09月21日 |
|
| 0425 2005年09月07日 |
|