You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Instructions on how to add ClickSend notifications to Home Assistant."
5
+
date: 2017-06-22 00:00
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
logo: clicksend.png
11
+
ha_category: Notifications
12
+
ha_release: 0.48
13
+
---
14
+
15
+
16
+
The `clicksend` platform uses [ClickSend](https://clicksend.com) to deliver notifications from Home Assistant.
17
+
18
+
### Get your ClickSend API Credentials
19
+
Go to your [ClickSend Dashboard](https://dashboard.clicksend.com) section and create your new project. After creating your project, you should now be able to obtain your `username` and `api_key`.
20
+
21
+
### Configuration
22
+
To add ClickSend to your installation, add the following to your Home Assistant `configuration.yaml` file:
23
+
24
+
```yaml
25
+
notify:
26
+
- platform: clicksend
27
+
name: ClickSend
28
+
username: CLICKSEND_USERNAME
29
+
api_key: CLICKSEND_API_KEY
30
+
recipient: PHONE_NO
31
+
```
32
+
33
+
Configuration variables:
34
+
35
+
* **name** (Optional): Setting the optional parameter name allows multiple notifiers to be created. The default value is `ClickSend`. The notifier will bind to the service notify.NOTIFIER_NAME.
36
+
* **username** (Required): Your `Username`.
37
+
* **api_key** (Required): Your `API Key`.
38
+
* **recipient** (Required): Your phone no. This is where you want to send your notification SMS messages. eg: `09171234567`
39
+
40
+
41
+
To use notifications, please see the [getting started with automation page](https://home-assistant.io/getting-started/automation/).
0 commit comments