Using the Pushover API, you can design applications that can send notifications to Android, iOS, and Deskop devices. Pushover provides a simple, yet powerful API that makes it easy to send notifications to any device in real-time. With the Pushover API, you have the ability to quickly send notifications, create interactive conversations, and create targeted messages.
The following are examples of applications you can build with Pushover:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pushover: {
type: "app",
app: "pushover",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.pushover.net/1/messages.json`,
params: {
token: `${this.pushover.$auth.api_token}`,
user: `${this.pushover.$auth.user_key}`,
message: `test`,
},
})
},
})
Sends an Emergency Push Notification to devices with Pushover. Notifications are repeated until they are acknowledged by the user. More information at Pushing Messages and Message Priority
Sends a Push Notification to devices with Pushover. More information at Pushing Messages
Pushover uses API keys for authentication. When you connect your Pushover account, Pipedream securely stores the keys so you can easily authenticate to Pushover APIs in both code and no-code steps.
The User key is available in Pushover homepage upon login.