Metadata-Version: 2.1
Name: tracardi-pushover-webhook
Version: 0.1.3
Summary: The purpose of this plugin is to connect with pushover app
Home-page: UNKNOWN
Author: Bartosz Dobrosielski, Risto Kowaczewski
Author-email: bdobrosielski@edu.cdv.pl
License: UNKNOWN
Keywords: tracardi,plugin
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: pydantic
Requires-Dist: tracardi-plugin-sdk (>=0.6.17)
Requires-Dist: tracardi-dot-notation (>=0.6.4)
Requires-Dist: tracardi
Requires-Dist: aiohttp
Requires-Dist: urllib3

# Pushover plugin

This plugin sends a message to pushover service.

# Requirements

To use this plugin you must register at https://pushover.net and obtain API_TOKEN and USER_KEY.

# Configuration

## Resource configuration

```json
{
  "token": "API_TOKEN from PushOver",
  "user": "USER_KEY from PushOver"
}
```

## Plugin configuration

```json
{
  "source": {
    "name": "pushover",
    "id": "49a3b3ce-3bba-42aa-9ba6-559576cfdfa"
  },
  "message": "message"
}
```

# Input

This plugin does not take any input

# Output

Output returns status and response body from PushOver service.

```json
{
  "status": 200,
  "body": {
    "status": 1,
    "request": "c759f16e-c10a-4066-b91d-05fd06504790"
  }
}
```


