Telegram is a cloud-based instant messaging and voice over IP service
Emit new event each time a Telegram Bot command is received.
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new event each time a channel post is created or updated.
Emit new events when collaborators are added to a repo
Create an additional invite link for a chat, See the docs for more information
Find issues and pull requests by state and keyword. See docs here
Edits photo or video messages. See the docs for more information
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`,
})
},
})