Tally is the simplest way to create beautiful forms & surveys, for free.
Emit new event for each message posted to one or more channels
Emit new event for each forum thread message posted. Note that your bot must have the MESSAGE_CONTENT
privilege intent to see the message content, see the docs here.
Emit new event for every member added to a guild. See docs here
The Tally API offers a suite of automation capabilities for Tally, a form-building platform that allows users to create forms without needing to code. Leveraging this API within Pipedream can supercharge your data collection and processing. With Pipedream, you can react to form submissions in real-time, sync data to other services, and customize your workflows to suit various use cases including data analysis, lead capture, and feedback management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tally: {
type: "app",
app: "tally",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.tally.so/me`,
headers: {
Authorization: `Bearer ${this.tally.$auth.oauth_access_token}`,
"Accept": `application/json`,
},
})
},
})
The Discord Bot API unlocks the power to interact with Discord users and channels programmatically, making it possible to automate messages, manage servers, and integrate with other services. With Pipedream's serverless platform, you can create complex workflows that respond to events in Discord, process data, and trigger actions in other apps. This opens up opportunities for community engagement, content moderation, analytics, and more, without the overhead of managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord_bot: {
type: "app",
app: "discord_bot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
"Authorization": `Bot ${this.discord_bot.$auth.bot_token}`,
},
})
},
})