Find the answer to your question
Advanced Search
Question
Can I retrieve scheduled listing ?
Answer
Summary
As a seller, you can view your scheduled items in the Pending Items view in My eBay. The Sheduled Items is also returned in GetItem, GetMyeBaySelling and GetSellerList if the API requester is the seller of the item.
The scheduled time is returned in StartTime in the above calls.
It's 2022-08-03T00:30:45.050Z (eBay time), the sample request below sets the item's ScheduleTime property to be 2022-08-04T00:30:45.050Z, one day after. Before the ScheduleTime is reached, this item will not be visible to anybody but the Seller.
<?xml version="1.0" encoding="utf-8"?>
<AddItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<Version>1123</Version>
<ErrorLanguage>en_US</ErrorLanguage>
<WarningLevel>High</WarningLevel>
<Item>
<BuyItNowPrice>10.0</BuyItNowPrice>
<Country>US</Country>
<Currency>USD</Currency>
<Description>Testing Scheduled Item</Description>
<ListingDuration>Days_5</ListingDuration>
<Location>San Jose, CA</Location>
<PaymentMethods>PaymentSeeDescription</PaymentMethods>
<PrimaryCategory>
<CategoryID>1463</CategoryID>
</PrimaryCategory>
<Quantity>1</Quantity>
<ReservePrice>5.0</ReservePrice>
<ScheduleTime>2022-08-04T00:30:45.050Z</ScheduleTime>
<StartPrice>1.0</StartPrice>
<Title>Scheduled Item</Title>
<ReturnPolicy>
<ReturnsAcceptedOption>ReturnsAccepted</ReturnsAcceptedOption>
<ReturnsWithinOption>Days_30</ReturnsWithinOption>
<RefundOption>MoneyBackOrReplacement</RefundOption>
<ShippingCostPaidByOption>Seller</ShippingCostPaidByOption>
<InternationalReturnsAcceptedOption>ReturnsAccepted</InternationalReturnsAcceptedOption>
<InternationalReturnsWithinOption>Days_30</InternationalReturnsWithinOption>
<InternationalRefundOption>MoneyBackOrReplacement</InternationalRefundOption>
<InternationalShippingCostPaidByOption>Buyer</InternationalShippingCostPaidByOption>
</ReturnPolicy>
<DispatchTimeMax>3</DispatchTimeMax>
<ShippingDetails>
<ShippingServiceOptions>
<ShippingService>ShippingMethodStandard</ShippingService>
<ShippingServicePriority>1</ShippingServicePriority>
<ShippingServiceCost currencyID="USD">0</ShippingServiceCost>
<ShippingServiceAdditionalCost currencyID="USD">0.00</ShippingServiceAdditionalCost>
</ShippingServiceOptions>
</ShippingDetails>
</Item>
<RequesterCredentials>
<eBayAuthToken></eBayAuthToken>
</RequesterCredentials>
</AddItemRequest>
GetItemResponse Playload.
<?xml version="1.0" encoding="UTF-8"?>
<GetItemResponse
xmlns="urn:ebay:apis:eBLBaseComponents">
<Timestamp>2022-08-03T00:58:23.474Z</Timestamp>
<Ack>Success</Ack>
<Version>1193</Version>
<Build>E1193_CORE_API_19146280_R1</Build>
<Item>
<AutoPay>false</AutoPay>
<BuyerProtection>ItemIneligible</BuyerProtection>
<BuyItNowPrice currencyID="USD">10.0</BuyItNowPrice>
<Country>US</Country>
<Currency>USD</Currency>
<GiftIcon>0</GiftIcon>
<ItemID>110551189716</ItemID>
<ListingDetails>
<Adult>false</Adult>
<BindingAuction>false</BindingAuction>
<CheckoutEnabled>true</CheckoutEnabled>
<ConvertedBuyItNowPrice currencyID="USD">10.0</ConvertedBuyItNowPrice>
<ConvertedStartPrice currencyID="USD">1.0</ConvertedStartPrice>
<ConvertedReservePrice currencyID="USD">5.0</ConvertedReservePrice>
<HasReservePrice>true</HasReservePrice>
<StartTime>2022-08-04T00:30:45.000Z</StartTime>
<EndTime>2022-08-09T00:30:45.000Z</EndTime>
<ViewItemURL>https://www.sandbox.ebay.com/itm/Scheduled-Item-/110551189716</ViewItemURL>
<HasUnansweredQuestions>false</HasUnansweredQuestions>
<HasPublicMessages>false</HasPublicMessages>
<BuyItNowAvailable>true</BuyItNowAvailable>
<ViewItemURLForNaturalSearch>https://www.sandbox.ebay.com/itm/Scheduled-Item-/110551189716</ViewItemURLForNaturalSearch>
</ListingDetails>
<ListingDuration>Days_5</ListingDuration>
<ListingType>Chinese</ListingType>
<Location>San Jose, CA</Location>
<PrimaryCategory>
<CategoryID>60811</CategoryID>
<CategoryName>Collectibles:Phone Cards</CategoryName>
</PrimaryCategory>
<PrivateListing>false</PrivateListing>
<Quantity>1</Quantity>
<ReservePrice currencyID="USD">5.0</ReservePrice>
<ReviseStatus>
<ItemRevised>false</ItemRevised>
</ReviseStatus>
<Seller>
<AboutMePage>false</AboutMePage>
<Email>zzz@gmail.com</Email>
<FeedbackScore>500</FeedbackScore>
<PositiveFeedbackPercent>0.0</PositiveFeedbackPercent>
<FeedbackPrivate>false</FeedbackPrivate>
<IDVerified>true</IDVerified>
<eBayGoodStanding>true</eBayGoodStanding>
<NewUser>false</NewUser>
<RegistrationDate>2006-01-01T00:00:00.000Z</RegistrationDate>
<Site>US</Site>
<Status>Confirmed</Status>
<UserID>testuser_zzz111</UserID>
<UserIDChanged>false</UserIDChanged>
<UserIDLastChanged>2020-06-04T14:08:17.000Z</UserIDLastChanged>
<VATStatus>NoVATTax</VATStatus>
<SellerInfo>
<AllowPaymentEdit>true</AllowPaymentEdit>
<CheckoutEnabled>true</CheckoutEnabled>
<CIPBankAccountStored>false</CIPBankAccountStored>
<GoodStanding>true</GoodStanding>
<LiveAuctionAuthorized>false</LiveAuctionAuthorized>
<MerchandizingPref>OptIn</MerchandizingPref>
<QualifiesForB2BVAT>false</QualifiesForB2BVAT>
<StoreOwner>false</StoreOwner>
<SafePaymentExempt>true</SafePaymentExempt>
</SellerInfo>
<MotorsDealer>false</MotorsDealer>
</Seller>
<SellingStatus>
<BidCount>0</BidCount>
<BidIncrement currencyID="USD">0.25</BidIncrement>
<ConvertedCurrentPrice currencyID="USD">1.0</ConvertedCurrentPrice>
<CurrentPrice currencyID="USD">1.0</CurrentPrice>
<LeadCount>0</LeadCount>
<MinimumToBid currencyID="USD">1.0</MinimumToBid>
<QuantitySold>0</QuantitySold>
<ReserveMet>false</ReserveMet>
<SecondChanceEligible>false</SecondChanceEligible>
<ListingStatus>Active</ListingStatus>
<QuantitySoldByPickupInStore>0</QuantitySoldByPickupInStore>
</SellingStatus>
<ShippingDetails>
<ApplyShippingDiscount>false</ApplyShippingDiscount>
<CalculatedShippingRate>
<WeightMajor measurementSystem="English" unit="lbs">0</WeightMajor>
<WeightMinor measurementSystem="English" unit="oz">0</WeightMinor>
</CalculatedShippingRate>
<SalesTax>
<SalesTaxPercent>0.0</SalesTaxPercent>
<ShippingIncludedInTax>false</ShippingIncludedInTax>
</SalesTax>
<ShippingServiceOptions>
<ShippingService>ShippingMethodStandard</ShippingService>
<ShippingServiceCost currencyID="USD">0.0</ShippingServiceCost>
<ShippingServicePriority>1</ShippingServicePriority>
<ExpeditedService>false</ExpeditedService>
<ShippingTimeMin>1</ShippingTimeMin>
<ShippingTimeMax>5</ShippingTimeMax>
</ShippingServiceOptions>
<ShippingType>Flat</ShippingType>
<ThirdPartyCheckout>false</ThirdPartyCheckout>
<ShippingDiscountProfileID>0</ShippingDiscountProfileID>
<InternationalShippingDiscountProfileID>0</InternationalShippingDiscountProfileID>
<SellerExcludeShipToLocationsPreference>true</SellerExcludeShipToLocationsPreference>
</ShippingDetails>
<ShipToLocations>US</ShipToLocations>
<Site>US</Site>
<StartPrice currencyID="USD">1.0</StartPrice>
<TimeLeft>P5DT23H32M22S</TimeLeft>
<Title>Scheduled Item</Title>
<GetItFast>false</GetItFast>
<BuyerResponsibleForShipping>false</BuyerResponsibleForShipping>
<PictureDetails>
<PhotoDisplay>None</PhotoDisplay>
</PictureDetails>
<DispatchTimeMax>3</DispatchTimeMax>
<ProxyItem>false</ProxyItem>
<BuyerGuaranteePrice currencyID="USD">20000.0</BuyerGuaranteePrice>
<IntangibleItem>false</IntangibleItem>
<ReturnPolicy>
<RefundOption>MoneyBackOrReplacement</RefundOption>
<Refund>Money back or replacement (buyer's choice)</Refund>
<ReturnsWithinOption>Days_30</ReturnsWithinOption>
<ReturnsWithin>30 Days</ReturnsWithin>
<ReturnsAcceptedOption>ReturnsAccepted</ReturnsAcceptedOption>
<ReturnsAccepted>Returns Accepted</ReturnsAccepted>
<ShippingCostPaidByOption>Seller</ShippingCostPaidByOption>
<ShippingCostPaidBy>Seller</ShippingCostPaidBy>
<InternationalRefundOption>MoneyBackOrReplacement</InternationalRefundOption>
<InternationalReturnsAcceptedOption>ReturnsAccepted</InternationalReturnsAcceptedOption>
<InternationalReturnsWithinOption>Days_30</InternationalReturnsWithinOption>
<InternationalShippingCostPaidByOption>Buyer</InternationalShippingCostPaidByOption>
</ReturnPolicy>
<PaymentAllowedSite>Canada</PaymentAllowedSite>
<PaymentAllowedSite>CanadaFrench</PaymentAllowedSite>
<PaymentAllowedSite>eBayMotors</PaymentAllowedSite>
<PaymentAllowedSite>US</PaymentAllowedSite>
<PostCheckoutExperienceEnabled>false</PostCheckoutExperienceEnabled>
<ShippingPackageDetails>
<ShippingIrregular>false</ShippingIrregular>
<ShippingPackage>None</ShippingPackage>
<WeightMajor measurementSystem="English" unit="lbs">0</WeightMajor>
<WeightMinor measurementSystem="English" unit="oz">0</WeightMinor>
</ShippingPackageDetails>
<HideFromSearch>false</HideFromSearch>
<eBayPlus>false</eBayPlus>
<eBayPlusEligible>false</eBayPlusEligible>
<IsSecureDescription>true</IsSecureDescription>
</Item>
</GetItemResponse>