Created Notify_seven (markdown)

Chris Caron 2024-11-22 13:46:36 -05:00
parent 232d96eee6
commit f1e4666497

30
Notify_seven.md Normal file

@ -0,0 +1,30 @@
## Seven Notifications
* **Source**: https://www.seven.io/
* **Icon Support**: No
* **Attachment Support**: No
* **Message Format**: Text
* **Message Limit**: 160 Characters per message
### Account Setup
Signup [from here](https://www.seven.io/). It is from the device you can access it's web interface and configure your access token.
### Syntax
Valid syntax is as follows:
* `seven://{token}/{target}`
### Parameter Breakdown
| Variable | Required | Description
| --------------- | -------- | -----------
| token | Yes | This is your generated Access Token associated with your Seven account.
| target | Yes | One or more phone number(s) you wish to send your notification to.
#### Example
Send a Seven notification:
```bash
# Assuming our {AccessToken} is abcd123
# Assuming we want to notify 555221237, and +18005551234
# Test out the changes with the following command:
apprise -t "Test Title" -b "Test Message" \
smseagle://abcd123/555221237/+18005551234
```