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,
})
},
})
Alerty uses API keys for authentication. When you connect your Alerty account, Pipedream securely stores the keys so you can easily authenticate to Alerty APIs in both code and no-code steps.
Sign in and copy your API Key and Notification URL directly from your dashboard