Send yourself native notifications from your apps and servers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
alerty: {
type: "app",
app: "alerty",
}
},
async run({steps, $}) {
const data = {
"title": `alerty.dev test notification`,
"message": `My first notification through the Alerty API via Pipedream!`,
}
return await axios($, {
method: "post",
url: `${this.alerty.$auth.notification_url}`,
headers: {
Authorization: `Bearer ${this.alerty.$auth.api_key}`,
},
data,
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.