10-07-2023 03:46 AM
I am not ale to receive "FixedPriceTransaction" platform notification after executing placeoffer api for my fixedbidtransaction item. I have setup this notificaton flow as follows.
1: Listitem
2:Setnotificationpref
notifyrequest.Version = "949";
notifyrequest.ErrorLanguage = "en_US";
notifyrequest.WarningLevel = WarningLevelCodeType.High;
notifyrequest.ApplicationDeliveryPreferences = new ApplicationDeliveryPreferencesType
{
AlertEmail = "mailto://***",
AlertEnable = EnableCodeType.Enable,
ApplicationEnable = EnableCodeType.Enable,
ApplicationURL = "https://mydomain/api/EbaySellResponse/GetNotification",
DeviceType = DeviceTypeCodeType.Platform
};
notifyrequest.UserDeliveryPreferenceArray = new NotificationEnableTypeCollection
{
new NotificationEnableType
{
EventType = NotificationEventTypeCodeType.FixedPriceTransaction,
EventEnable = EnableCodeType.Enable
},
new NotificationEnableType
{
EventType = NotificationEventTypeCodeType.ItemSold,
EventEnable = EnableCodeType.Enable
}
};
2: GetNotificationPreferences
3: Placeoffer
After following this flow i am no able to receive notification on application url in sandbox. (Note- i am getting success message in placeoffer api call)
can anyone please help me to solve this issue?