home-assistant.io/source/_components/notify.rest.markdown
2018-11-16 08:57:14 +01:00

1.9 KiB

layout title description date sidebar comments sharing footer logo ha_category ha_release
page REST Instructions on how to add RESTful notifications to Home Assistant. 2016-02-12 07:00 true false true true restful.png Notifications 0.13

The rest notification platform allows you to deliver RESTful notifications from Home Assistant to another party.

To enable the REST notification in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
notify:
  - name: NOTIFIER_NAME
    platform: rest
    resource: http://IP_ADDRESS/ENDPOINT

{% configuration %} name: description: Setting the optional parameter name allows multiple notifiers to be created. The notifier will bind to the service notify.NOTIFIER_NAME. required: false default: notify type: string resource: description: The resource or endpoint that will receive the value. required: true type: string method: description: The method of the request. Valid options are GET, POST or POST_JSON. required: false default: GET type: string headers: description: The headers for the request. required: false type: string message_param_name: description: Parameter name for the message. required: false default: message type: string title_param_name: description: Parameter name for the title. required: false type: string target_param_name: description: Parameter name for the target. required: false type: string data: description: Dictionary of extra parameters to send to the resource. required: false type: string data_template: description: Template dictionary of extra parameters to send to the resource. required: false type: template {% endconfiguration %}

To use notifications, please see the getting started with automation page.