Skip to content

Commit 00a24f1

Browse files
oozmanfabaff
authored andcommitted
Add ClickSend notify service page. (home-assistant#2868)
1 parent ce30b5b commit 00a24f1

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
layout: page
3+
title: "ClickSend"
4+
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/).
19.3 KB
Loading

0 commit comments

Comments
 (0)