We got an ebay-store. Our support staff adds items through the standard ebay-interface. When they do this to add a new item, I can get this item through the GetSellerList-call. But when they only change something in the text or modify the item in another way, the GetSellerList-call will fail to notify me about that. I need those modifications because we include our SKU in the article-text and this is something, our support will adjust. Had some one a similar problem and found a way to solve this?
We got an ebay-store. Our support staff adds items through the standard ebay-interface. When
Share
I think you can select all revised item and filter them.
Let me explain what i’m thinking about.
I would use the output selector to limit result of each call. i would only return intersting data such as itemID, SKU, (and what else you need toghter with two fields i’m talking about next). Then i would filter answer by using
ItemArray.Item.ReviseStatus.ItemRevisedif is true than item have been revised previously so i would put in array.from documentation
I would definitely store all returned data in a table so i would be able to check for new entries / new revisions.
When a new entry is found/updated you can do what ever you need, for example email yourself to know what items have been revised.
Field wich can give you revision details is
ItemArray.Item.ReviseStatus.ItemRevisedfrom documentation:
I hope this can help.