From b80c537250a0f50ed9bc843e8a9213a5a67f9f7f Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Mon, 28 Dec 2020 11:35:43 -0500 Subject: [PATCH] Created Notify_parseplatform (markdown) --- Notify_parseplatform.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Notify_parseplatform.md diff --git a/Notify_parseplatform.md b/Notify_parseplatform.md new file mode 100644 index 0000000..7edd7b8 --- /dev/null +++ b/Notify_parseplatform.md @@ -0,0 +1,28 @@ +## Parse Platform Notifications +* **Source**: https://spontit.com +* **Icon Support**: No +* **Message Format**: Text +* **Message Limit**: 32768 Characters per Message + +### Syntax +Channels are optional; if no channel is specified then you are just personally notified. +- `parsep://{app_id}:{master_key}@{hostname}` +- `parseps://{app_id}:{master_key}@{hostname}` + +### Parameter Breakdown +| Variable | Required | Description +| ----------- | -------- | ----------- +| app_id | Yes | The Application ID +| master_key | Yes | This is the Master Key associated with your account +| hostname | Yes | The Hostname of your Parse Platform Server + +#### Example +Send a Parse Platform notification +```bash +# Assume: +# - our {app_id} is abc123 +# - our {master_key} is a6k4ABnck26hDh8AA3EDHoOVdDEUlw3nty +# - our {hostname} is parseplatform.local +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + parsep://app_id:master_key@parseplatform.local +``` \ No newline at end of file