Sends notifications with personalized sounds to your under-utilized ears so that your over-worked eyes can get a break!
Triggers a vybit, with optional customizations available. See the documentation
The Vybit API allows you to create and manage notifications with custom sounds. Using this API on Pipedream opens up possibilities for integrating audio notifications into a variety of workflows. You can dynamically generate alerts based on triggers from numerous apps, streamlining the way users receive and acknowledge important information.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vybit: {
type: "app",
app: "vybit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.vybit.net/rest/vybits`,
headers: {
"Content-Type": `application/json`,
"Accept": `application/json`,
"Accept-Charset": `utf-8`,
"Authorization": `${this.vybit.$auth.oauth_access_token}`,
},
})
},
})
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.