Home
Find the answer to your question
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>