# No notifications in Netdata app

**URL:** https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195
**Category:** Help
**Tags:** cloud
**Created:** [March 1, 2024, 8:29am UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195 "2024-03-01T08:29:54Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![thomasjsn](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/thomasjsn/32/3470_2.png) [@thomasjsn](https://community.netdata.cloud/u/thomasjsn)
#### Post date: [March 1, 2024, 8:29am UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/1 "2024-03-01T08:29:54Z")

</div>

I have installed and logged into the Netdata App, I have followed the steps in [the documentation](https://learn.netdata.cloud/docs/alerts-&-notifications/notifications/centralized-cloud-notifications/netdata-mobile-app#setup). But I receive no notifications in the app.

I have received email notification about a ZFS pool problem, and the alert is active:

 ![image](https://canada1.discourse-cdn.com/flex029/uploads/netdata2/original/2X/4/4007cde30c4cf30c54851cbeafc229f0f3ea7809.png)

But the app doesn’t show anything:

 ![Screenshot_20240301_092635_Netdata](https://canada1.discourse-cdn.com/flex029/uploads/netdata2/original/2X/2/28e476ae3004ab60ccb0f979a2bb913885706dc0.jpeg)

I’m on the Business trial plan, but will subscribe to Homelab once the trial is over.

What am I missing?

---

<div class="post-metadata">

### Author: ![papazach](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/papazach/32/145_2.png) [@papazach](https://community.netdata.cloud/u/papazach)
#### Post date: [March 1, 2024, 9:06am UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/2 "2024-03-01T09:06:50Z")

</div>

Hello @thomasjsn 👋

Thanks for reaching out, could you please share in a DM your `space_id` in order to take a better look into it?  
You can find your space\_id by clicking on the Space Settings ⚙ at the lower left side of the Netdata Cloud.

Best,  
Costas

---

<div class="post-metadata">

### Author: ![papazach](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/papazach/32/145_2.png) [@papazach](https://community.netdata.cloud/u/papazach)
#### Post date: [March 1, 2024, 10:34am UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/3 "2024-03-01T10:34:01Z")

</div>

Thanks!

So we’re on to something and it seems that there is indeed a sneaky bug from our side which we already started addressing.

Thanks so much for reporting this, we’ll be keeping you up to date and let you know when the fix is up & running 👍

Best,  
C.

---

<div class="post-metadata">

### Author: ![thomasjsn](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/thomasjsn/32/3470_2.png) [@thomasjsn](https://community.netdata.cloud/u/thomasjsn)
#### Post date: [March 4, 2024, 11:33am UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/4 "2024-03-04T11:33:51Z")

</div>

Hello @papazach, could this _sneaky bug_ also be the reason why I’m not seeing any alarms with the `/api/v1/alarms` and `/api/v1/alarms_values` API endpoint?

I currently have an active alarm, but get the following response:

`/api/v1/alarms`:

```auto
{
	"hostname": "alpha",
	"latest_alarm_log_unique_id": 0,
	"status": false,
	"now": 1709551980,
	"alarms": {

	}
}

```

`/api/v1/alarms_values`:

```auto
{
	"hostname": "alpha",
	"alarms": {

	}
}

```

---

<div class="post-metadata">

### Author: ![car12o](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/car12o/32/3515_2.png) [@car12o](https://community.netdata.cloud/u/car12o)
#### Post date: [March 4, 2024, 12:22pm UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/5 "2024-03-04T12:22:45Z")

</div>

Hello @thomasjsn 👋

The sneaky bug we spot belongs to Cloud and the endpoints you shared are Agent endpoints, so they are unrelated.

Regarding you aren’t able to get alerts from the API, most likely, you can’t get them because you are using the legacy endpoints. They were deprecated in favor of `/api/v2/alerts` endpoint.  
Bear in mind, this new endpoint is very complex and supports a big set of parameter options.

In order to get what you’re looking for, the parameters should be:

- `options=instances,values`
- `status=raised`

So the final endpoint should look like this:  
`/api/v2/alerts?options=instances,values&status=raised`

Best,  
Joao

---

<div class="post-metadata">

### Author: ![thomasjsn](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/thomasjsn/32/3470_2.png) [@thomasjsn](https://community.netdata.cloud/u/thomasjsn)
#### Post date: [March 4, 2024, 12:43pm UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/6 "2024-03-04T12:43:02Z")

</div>

Hello, thanks for the feedback.

I can’t find any reference to `v2/alerts` in the documentation:

> **[Netdata API](https://learn.netdata.cloud/api)**
>
> The Netdata Agent provides a REST API, that provides data about the node's charts, functions, alerts and many more. You run test API calls through Swagger UI

That’s why I assumed V1 was the current. I’ll do some tests with the new endpoint.

---

<div class="post-metadata">

### Author: ![thomasjsn](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/thomasjsn/32/3470_2.png) [@thomasjsn](https://community.netdata.cloud/u/thomasjsn)
#### Post date: [March 4, 2024, 1:57pm UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/7 "2024-03-04T13:57:48Z")

</div>

> [@car12o](#):
>
> So the final endpoint should look like this:  
> `/api/v2/alerts?options=instances,values&status=raised`

I can confirm that this works 🙂 I had to do it on the parent, but this makes sense since the child has:

```auto
[health]
    enabled = no

```

---

<div class="post-metadata">

### Author: ![car12o](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/car12o/32/3515_2.png) [@car12o](https://community.netdata.cloud/u/car12o)
#### Post date: [March 4, 2024, 4:12pm UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/8 "2024-03-04T16:12:41Z")

</div>

You’re absolutely correct, the docs lack for update, I’m sorry for that.  
Already reported this to the docs department and they will take care of it.  
Once again, thanks for raising this up.

> I can confirm that this works 🙂 I had to do it on the parent, but this makes sense since the child has:

Correct 😉

Also have good news, the sneaky bug is addressed, and you should now be able to use our Mobile App.

Thanks for your patient, and let me know if there’s anything more I can help.

---

<div class="post-metadata">

### Author: ![thomasjsn](https://yyz1.discourse-cdn.com/flex029/user_avatar/community.netdata.cloud/thomasjsn/32/3470_2.png) [@thomasjsn](https://community.netdata.cloud/u/thomasjsn)
#### Post date: [March 5, 2024, 7:54am UTC](https://community.netdata.cloud/t/no-notifications-in-netdata-app/5195/9 "2024-03-05T07:54:32Z")

</div>

> [@car12o](#):
>
> Also have good news, the sneaky bug is addressed, and you should now be able to use our Mobile App.
> 
> Thanks for your patient, and let me know if there’s anything more I can help.

Can confirm, I now have _Mobile App_ in my _Notification Method_ and did get a notification in the app yesterday 👍

 ![image](https://canada1.discourse-cdn.com/flex029/uploads/netdata2/original/2X/0/0c2e1ea9ed491fc5464789a4f296d28f4d1df43d.png)

Thanks 🖖
