Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
Add a new contact into a specified group in SendSMS. See the documentation
Checks if a specific phone number is in the blocklist. See the documentation
This action sends an SMS message using the SendSMS.ro API. See the documentation
This action sends an SMS message with an unsubscribe link using the SendSMS.ro API. See the documentation
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 sendSMS API provides a straightforward way to integrate SMS capabilities into automation workflows on Pipedream. This API allows you to send text messages directly to users' phones, which can be pivotal for timely alerts, critical notifications, or personalized marketing messages. With Pipedream's serverless platform, you can trigger these SMS communications based on a wide variety of events, such as new e-commerce orders, support ticket updates, or even changes in third-party APIs.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendsms: {
type: "app",
app: "sendsms",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendsms.ro/json?action=user_get_info`,
params: {
username: `${this.sendsms.$auth.username}`,
password: `${this.sendsms.$auth.api_key}`,
},
})
},
})