Skip to content

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

NameLabelTypeDescriptionRequired
tokenApplications API TokenSTRINGApplications API Token can be found in your applications dashboard.true
userUser KeySTRINGUser Key can be found in main dashboard.true

Actions

Send Notification

Name: sendNotification

Sends a notification.

Properties

NameLabelTypeDescriptionRequired
titleMessage TitleSTRINGThe title of the message that will be sent.false
messageMessageSTRINGThe message to send.true
priorityPrioritySTRING
Options -2, -1, 0, 1, 2
The priority of the message.false
retryRetryINTEGERHow often will the notification be sent to the user. Must have a value of at least 30 secondstrue
expireExpireINTEGERIf the notification has not be acknowledged in expire seconds, it will be marked as expired and will stop being sent to the user.true
urlURLSTRINGClickable URL link in the message to send.false
url_titleUrl TitleSTRINGWhen the user taps on the notification in Pushover to expand it, the URL will be shown as the supplied url_titlefalse
attachment_base64AttachmentFILE_ENTRYThe 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

NameTypeDescription
statusINTEGER
requestSTRING

Output Example

{
"status" : 1,
"request" : ""
}

Additional instructions