Can I Reschedule item via an API call?
Find the answer to your question
Advanced Search
Published: June 15 2006, 3:05:00 PMUpdated: July 25 2022, 10:05:29 AM
There is an option of Reschedule item on ebay, can i do it from API ?? if yes then how can i do it??
ReviseItem API call can be used to modify Item.ScheduleTime value as below if the current schedule time for the given item is in the future.
<?xml version="1.0" encoding="utf-8"?>
<ReviseItemRequest xmlns="urn:ebay:apis:eBLBaseComponents">
<Version>463</Version>
<Item>
<ItemID>ITEMID</ItemID>
<ScheduleTime>NEW TIME</ScheduleTime>
</Item>
<RequesterCredentials>
<eBayAuthToken>YOUR TOKEN</eBayAuthToken>
</RequesterCredentials>
</ReviseItemRequest>
How well did this answer your question?
Answers others found helpful