Alerts API to see rule name

Hello,

From the example in docs:

Example:

curl -H ‘X-Auth-Token: YOURAPITOKENHERE’ https://librenms.org/api/v0/alerts/1
Output:

{
“status”: “ok”,
“message”: “”,
“count”: 7,
“alerts”: [
{
“hostname”: “localhost”,
“id”: “1”,
“device_id”: “1”,
“rule_id”: “1”,
“state”: “1”,
“alerted”: “1”,
“open”: “1”,
“timestamp”: “2014-12-11 14:40:02”
},
}

what is the “message”: “”, ? since I don’t see it while running tests.

Secondly would be great to have rule name while listing alerts from API, at the moment it only shows only device name on which alert is and rule_id, so instead of or in addition to rule_id to show rule_name derived from rule_id.

Thanks in advance.