cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Disable ItemRevised notification for certain types of revision

Whenever I start/end a promotional sale, I get an ItemRevised notification for EVERY single listing since the sale price changes. Is there any way to control what constitutes an item revision or is there a way to determine what cause the ItemRevised notification to be sent?

 

Thanks for the help in advance!

Message 1 of 3
latest reply
2 REPLIES 2

Disable ItemRevised notification for certain types of revision

You can unsubscribe to Platform Notifications by setting the EventEnable to Disable in SetNotificationPreferences call.

 

Here's a sample request to disable notifications for a User Token:

<?xml version="1.0" encoding="utf-8"?>
‌‌apis:eBLBaseComponents">
<RequesterCredentials>
<eBayAuthToken>ABC...123</eBayAuthToken>
</RequesterCredentials>
<Version>1355</Version>
  <UserDeliveryPreferenceArray> 
    <NotificationEnable> 
      <EventEnable>Disable</EventEnable>
      <EventType>ItemRevised</EventType>
    </NotificationEnable>
    <!-- ... more NotificationEnable nodes allowed here ... -->
  </UserDeliveryPreferenceArray>
</SetNotificationPreferencesRequest>

This will disable the specific notification event for the user. 

Best Regards,
eBay Developer Support
Message 2 of 3
latest reply

Disable ItemRevised notification for certain types of revision

Thanks for the reply!

 

This isn't quite what I need. I understand I can disable whole notifications. I am wondering if within a ItemRevision notification, I can disable what triggers ItemRevision. For example, if I change the item specifics of the listing, I still get the notification but if the sale price changes because of the start/end of a promotional sale, I do not receive a notification.

Message 3 of 3
latest reply