← Telegram Bot + AWeber integrations

Add Subscriber with AWeber API on New Bot Command Received (Instant) from Telegram Bot API

Pipedream makes it easy to connect APIs for AWeber, Telegram Bot and 1000+ other apps remarkably fast.

Trigger workflow on
New Bot Command Received (Instant) from the Telegram Bot API
Next, do this
Add Subscriber with the AWeber API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

This integration creates a workflow with a Telegram Bot trigger and AWeber action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Bot Command Received (Instant) trigger
    1. Connect your Telegram Bot account
    2. Select one or more Commands
  3. Configure the Add Subscriber action
    1. Connect your AWeber account
    2. Select a Account ID
    3. Select a List ID
    4. Configure Email
    5. Optional- Configure Name
    6. Optional- Configure Tags
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event each time a Telegram Bot command is received.
Version:0.0.3
Key:telegram_bot_api-new-bot-command-received

New Bot Command Received (Instant) Overview

Telegram Bots can respond to Slash commands. For instance, you can add a /hi or /help command to your Telegram bot to help users learn how to use your bot.

Trigger Code

import base from "../common/webhooks.mjs";

export default {
  ...base,
  key: "telegram_bot_api-new-bot-command-received",
  name: "New Bot Command Received (Instant)",
  description: "Emit new event each time a Telegram Bot command is received.",
  version: "0.0.3",
  type: "source",
  dedupe: "unique",
  props: {
    ...base.props,
    commands: {
      propDefinition: [
        base.props.telegramBotApi,
        "commands",
      ],
    },
  },
  methods: {
    ...base.methods,
    getMeta(event, message) {
      return {
        id: event.update_id,
        summary: message.text,
        ts: new Date(message.edit_date ?? message.date),
      };
    },
    getEventTypes() {
      return [
        "message",
        "edited_message",
      ];
    },
    processEvent(event) {
      const message = event.edited_message ?? event.message;

      if (!message?.text) {
        console.log("Skipping message that isn’t a bot command");

        return;
      }

      const command = message.text.split(" ")[0];

      if (typeof this.commands === "string") {
        this.commands = JSON.parse(this.commands);
      }

      const foundCmd = this.commands.some((cmd) => command.includes(cmd));
      if (!foundCmd) {
        return;
      }

      this.$emit(event, this.getMeta(event, message));
    },
  },
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Telegram BottelegramBotApiappThis component uses the Telegram Bot app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Commandscommandsstring[]Select a value from the drop down menu.

Trigger Authentication

Telegram Bot uses API keys for authentication. When you connect your Telegram Bot account, Pipedream securely stores the keys so you can easily authenticate to Telegram Bot APIs in both code and no-code steps.

To use the Telegram Bot API, you must first create a new bot by chatting with the BotFather.


Telegram Bot how to

After you create your bot, copy the bot token and add it below.

About Telegram Bot

Telegram is a cloud-based instant messaging and voice over IP service

Action

Description:Add subscribers to the specified account and list. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/post).
Version:0.0.2
Key:aweber-add-subscriber

AWeber Overview

The AWeber API enables you to interact with your AWeber account data and
perform actions, such as creating and updating subscribers, retrieving campaign
statistics, and managing account preferences. You can use the API to build
applications that integrate with AWeber, such as a custom subscriber management
system or a campaign reporting tool.

Action Code

import aweberApp from "../../aweber.app.mjs";
import utils from "../../common/utils.mjs";

export default {
  key: "aweber-add-subscriber",
  name: "Add Subscriber",
  description: "Add subscribers to the specified account and list. [See the docs here](https://api.aweber.com/#tag/Subscribers/paths/~1accounts~1{accountId}~1lists~1{listId}~1subscribers/post).",
  type: "action",
  version: "0.0.2",
  props: {
    aweberApp,
    accountId: {
      propDefinition: [
        aweberApp,
        "accountId",
      ],
    },
    listId: {
      propDefinition: [
        aweberApp,
        "listId",
        ({ accountId }) => ({
          accountId,
        }),
      ],
    },
    email: {
      type: "string",
      label: "Email",
      description: "The subscriber's email address",
    },
    name: {
      propDefinition: [
        aweberApp,
        "subscriberName",
      ],
    },
    tags: {
      propDefinition: [
        aweberApp,
        "subscriberTags",
      ],
    },
  },
  async run({ $ }) {
    const {
      accountId,
      listId,
      email,
      name,
    } = this;

    const tags = utils.parse(this.tags);

    await this.aweberApp.addSubscriber({
      $,
      accountId,
      listId,
      data: {
        email,
        name,
        tags,
      },
    });

    $.export("$summary", `Successfully added subscriber with email ${email}.`);
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
AWeberaweberAppappThis component uses the AWeber app.
Account IDaccountIdintegerSelect a value from the drop down menu.
List IDlistIdstringSelect a value from the drop down menu.
Emailemailstring

The subscriber's email address

Namenamestring

The subscriber's name

Tagstagsstring[]

This field is used to apply a list of tags to a Subscriber. With Campaigns, you can trigger a series of messages based on what Tags have been applied to your subscribers.

Action Authentication

AWeber uses OAuth authentication. When you connect your AWeber account, Pipedream will open a popup window where you can sign into AWeber and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any AWeber API.

Pipedream requests the following authorization scopes when you connect your account:

account.readlist.readlist.writesubscriber.readsubscriber.writesubscriber.read-extendedemail.reademail.write

About AWeber

Powerfully-Simple Email Marketing

More Ways to Connect AWeber + Telegram Bot

Add Subscriber with AWeber API on Message Updates (Instant) from Telegram Bot API
Telegram Bot + AWeber
 
Try it
Add Subscriber with AWeber API on New Updates (Instant) from Telegram Bot API
Telegram Bot + AWeber
 
Try it
Get Accounts with AWeber API on Message Updates (Instant) from Telegram Bot API
Telegram Bot + AWeber
 
Try it
Get Accounts with AWeber API on New Updates (Instant) from Telegram Bot API
Telegram Bot + AWeber
 
Try it
Get Lists with AWeber API on Message Updates (Instant) from Telegram Bot API
Telegram Bot + AWeber
 
Try it
New Bot Command Received (Instant) from the Telegram Bot API

Emit new event each time a Telegram Bot command is received.

 
Try it
New Channel Updates (Instant) from the Telegram Bot API

Emit new event each time a channel post is created or updated.

 
Try it
New Message Updates (Instant) from the Telegram Bot API

Emit new event each time a Telegram message is created or updated.

 
Try it
New Updates (Instant) from the Telegram Bot API

Emit new event for each new Telegram event.

 
Try it
Subscriber Added from the AWeber API

Emit new event when a subscriber in a list is added. See the docs here

 
Try it
Create Chat Invite Link with the Telegram Bot API

Create an additional invite link for a chat, See the docs for more information

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
Try it
Edit a Media Message with the Telegram Bot API

Edits photo or video messages. See the docs for more information

 
Try it
Edit a Text Message with the Telegram Bot API

Edits text or game messages. See the docs for more information

 
Try it
Export Chat Invite Link with the Telegram Bot API

Generate a new primary invite link for a chat, See the docs for more information

 
Try it