Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Facilitates sending of SMS messages in bulk to specified phone numbers. See the documentation
Sends a single SMS to a specified recipient. See the documentation
Send a simple or structured message (using embeds) to a Discord channel
The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
The Dexatel API provides capabilities for sending and receiving SMS and voice messages globally, enabling businesses to enhance communication and marketing efforts. Leveraging the Dexatel API on Pipedream allows you to automate messaging flows, integrate with CRM platforms, trigger alerts or notifications based on certain events, and more. By connecting Dexatel to other apps available on Pipedream, you can create powerful, event-driven workflows that save time and increase efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dexatel: {
type: "app",
app: "dexatel",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dexatel.com/v1/accounts/self`,
headers: {
"X-Dexatel-Key": `${this.dexatel.$auth.api_key}`,
},
})
},
})