04-21-2023 03:41 AM
Hi,
I'm working on some integration with ebay, and having an issue with receiving XML platform notifications on item being sold.
I was trying to get "EndOfAuction" event, with no success. Now I'm trying to check all event names and set up like this:
<UserDeliveryPreferenceArray>
<NotificationEnable>
<EventType>EndOfAuction</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemListed</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemRevised</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemClosed</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemWon</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemMarkedShipped</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
<NotificationEnable>
<EventType>ItemMarkedPaid</EventType>
<EventEnable>Enable</EventEnable>
</NotificationEnable>
</UserDeliveryPreferenceArray>
But I can only receiving "ItemLised", "ItemRevised", "ItemClosed"(on manual closing of listing) and "ItemMarkedShipped" - the only one related to actual selling. I'm not getting any of EndOfAuction etc platform notifications.
Can anyone advise me on what can be causing this?