Reputation: 1695
I'm working with .net core
and Firebase Cloud Messaging
I was able to add a scheduled notification on Firebase. Now I need to add the ability to cancel or delete this scheduled notification.
Isn't this possible? I've searched FCM
but there's no API for deleting or canceling a scheduled notificaiton.
Upvotes: 0
Views: 938
Reputation: 598688
Since the only way to schedule messages without a custom server is through the Firebase console, I'm going to assume you've used that.
In that case, to cancel a message you will also have to do so through the console.
Go to the Firebase Cloud Messaging console for your project.
You'll see a list of notifications for your project:
Click the little three-dot overflow menu ⠇ on the right of the scheduled message.
Click Delete notification in the menu
Upvotes: 1