Pushover
Pushover is a notification service that sends real-time alerts to mobile and desktop devices, integrating with apps, scripts, and services.
Categories: Communication
Type: pushover/v1
Connections
Version: 1
custom
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| token | Applications API Token | STRING | Applications API Token can be found in your applications dashboard. | true |
| user | User Key | STRING | User Key can be found in main dashboard. | true |
Connection Setup
- Navigate to link.
- Click on Create an Application/API Token.
- Enter name of your application and optionally description, icon and URL.
- Check Terms of Service checkbox.
- Click Create Application.
- This is your Application API Token.
- Click here to go to the Pushover dashboard.
- This is your User Key.
Actions
Send Notification
Name: sendNotification
Sends a notification.
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| title | Message Title | STRING | The title of the message that will be sent. | false |
| message | Message | STRING | The message to send. | true |
| priority | Priority | STRING Options-2, -1, 0, 1, 2 | The priority of the message. | false |
| retry | Retry | INTEGER | How often will the notification be sent to the user. Must have a value of at least 30 seconds | true |
| expire | Expire | INTEGER | If the notification has not be acknowledged in expire seconds, it will be marked as expired and will stop being sent to the user. | true |
| url | URL | STRING | Clickable URL link in the message to send. | false |
| url_title | Url Title | STRING | When the user taps on the notification in Pushover to expand it, the URL will be shown as the supplied url_title | false |
| attachment_base64 | Attachment | FILE_ENTRY | The attachment to send. | false |
Example JSON Structure
{
"label" : "Send Notification",
"name" : "sendNotification",
"parameters" : {
"title" : "",
"message" : "",
"priority" : "",
"retry" : 1,
"expire" : 1,
"url" : "",
"url_title" : "",
"attachment_base64" : {
"extension" : "",
"mimeType" : "",
"name" : "",
"url" : ""
}
},
"type" : "pushover/v1/sendNotification"
}Output
Type: OBJECT
Properties
| Name | Type | Description |
|---|---|---|
| status | INTEGER | |
| request | STRING |
Output Example
{
"status" : 1,
"request" : ""
}What to do if your action is not listed here?
If this component doesn't have the action you need, you can use Custom Action to create your own. Custom Actions empower you to define HTTP requests tailored to your specific requirements, allowing for greater flexibility in integrating with external services or APIs.
To create a Custom Action, simply specify the desired HTTP method, path, and any necessary parameters. This way, you can extend the functionality of your component beyond the predefined actions, ensuring that you can meet all your integration needs effectively.
How is this guide?
Last updated on