An editorial newsletter tool for writers and publishers
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.
Create an additional invite link for a chat, See the docs for more information
Edits photo or video messages. See the docs for more information
Edits text or game messages. See the docs for more information
Generate a new primary invite link for a chat, See the docs for more information
With the Revue API you can build powerful newsletters that engage and excite
your readers. Create custom newsletters that are tailored to your content and
your audience. Publish rich, mobile-optimized newsletters in minutes by
integrating the Revue API into your website.
With the Revue API you can easily create and deliver newsletters to your
existing subscribers with just a few lines of code. Here are some examples of
what you can build with the Revue API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
revue: {
type: "app",
app: "revue",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.getrevue.co/api/v2/accounts/me`,
headers: {
"Authorization": `Token ${this.revue.$auth.api_key}`,
},
})
},
})
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`,
})
},
})