Mohamad Mousheimish
Mohamad Mousheimish

Reputation: 1695

Firebase Cloud Messaging deleting notification

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

Answers (1)

Frank van Puffelen
Frank van Puffelen

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.

  1. Go to the Firebase Cloud Messaging console for your project.

  2. You'll see a list of notifications for your project:

    enter image description here

  3. Click the little three-dot overflow menu ⠇ on the right of the scheduled message.

    enter image description here

  4. Click Delete notification in the menu

Upvotes: 1

Related Questions