diff --git a/_addons_bindings/prowl/readme.md b/_addons_bindings/prowl/readme.md index e767a62c6..fb1319ca5 100644 --- a/_addons_bindings/prowl/readme.md +++ b/_addons_bindings/prowl/readme.md @@ -49,9 +49,11 @@ _*.rules_ Once you have created the broker thing with a valid API key, you can use the Prowl service in your rules. First you need to create an instance of the broker just before any call or on the top rules level. (replace the _mybroker_ with the right name of your instance). -Then you can call method _pushNotification_, which requires two parameters - _event_ and _description_. +Then you can call method _pushNotification_, which requires two parameters - _event_ and _description_. +There is also an optional third parameter _priority_ which represents the message priority (very low) -2,-1,0,1,2 (emergency). The default priority is 0. ``` val prowl = getActions("prowl","prowl:broker:mybroker") prowl.pushNotification("Event", "This is the description of the event") +prowl.pushNotification("Emergency Event", "This is the description of the event", 2) ```