Sends notifications with personalized sounds to your under-utilized ears so that your over-worked eyes can get a break!
Go to siteThe 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}`,
},
})
},
})
Dynamic Alert System for E-commerce Sales: Set up a workflow that monitors your e-commerce platform for new sales. Each time a sale is made, the Vybit API is triggered to send a custom sound notification, giving you an immediate and pleasant audible alert.
Task Completion Notifications for Project Management: Integrate the Vybit API with your project management tool. When a task is marked as completed, trigger a Vybit notification to the team's channel or specific members, providing a satisfying sound cue to signify completion.
Real-time Alerts for Social Media Mentions: Create a workflow that connects to a social media platform's API. When your brand gets mentioned, use Vybit to play a unique sound, allowing your social media team to respond quickly and engage with the audience.
Triggers a vybit, with optional customizations available. See the documentation
Vybit uses OAuth authentication. When you connect your Vybit account, Pipedream will open a popup window where you can sign into Vybit and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Vybit API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://app.vybit.net/
?
client_id={{oauth.client_id}}
&
state={{oauth.state}}
&
redirect_uri={{oauth.redirect_uri}}
POST
https://app.vybit.net/rest/servicetoken
content-type: application/json
accept: application/json
accept-charset: utf-8
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
code={{oauth.code}}