The simplest way to create beautiful forms & surveys, for free.
Emit new event each time a Telegram Bot command is received.
Emit new event each time a channel post is created or updated.
Emit new event each time a Telegram message is created or updated.
Using Tally API, you can build powerful applications that allow business users
to track, analyze, and automate their data. Here are some examples of what you
can build with the Tally API:
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`,
},
})
},
})
With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
telegram_bot_api: {
type: "app",
app: "telegram_bot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.telegram.org/bot${this.telegram_bot_api.$auth.token}/getMe`,
})
},
})