MySQL

Open-source relational database

Integrate the MySQL API with the Telegram Bot API

Setup the MySQL API trigger to run a workflow which integrates with the Telegram Bot API. Pipedream's integration platform allows you to integrate MySQL and Telegram Bot remarkably fast. Free for developers.

Create Chat Invite Link with Telegram Bot API on New Column from MySQL API
MySQL + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New or Updated Row from MySQL API
MySQL + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Row (Custom Query) from MySQL API
MySQL + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Row from MySQL API
MySQL + Telegram Bot
 
Try it
Create Chat Invite Link with Telegram Bot API on New Table from MySQL API
MySQL + Telegram Bot
 
Try it
New Column from the MySQL API

Emit new event when you add a new column to a table. See the docs here

 
Try it
New or Updated Row from the MySQL API

Emit new event when you add or modify a new row in a table. See the docs here

 
Try it
New Row from the MySQL API

Emit new event when you add a new row to a table. See the docs here

 
Try it
New Row (Custom Query) from the MySQL API

Emit new event when new rows are returned from a custom query. See the docs here

 
Try it
New Table from the MySQL API

Emit new event when a new table is added to a database. See the docs here

 
Try it
Create Row with the MySQL API

Adds a new row. 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 Row with the MySQL API

Delete an existing row. See the docs here

 
Try it
Delete a Message with the Telegram Bot API

Deletes a message. See the docs for more information

 
Try it
Execute Query with the MySQL API

Find row(s) via a custom query. See the docs here

 
Try it

Overview of MySQL

MySQL is a powerful database management system used by some of the largest
organizations in the world, including Facebook, Google, and Amazon. MySQL is an
open-source relational database management system (RDBMS), as well as a popular
choice for web applications used by millions of websites.

Some applications that can be built using the MySQL API include:

  • A web application that stores and retrieves data from a MySQL database
  • A desktop application that uses a MySQL database for data storage
  • A mobile application that interacts with a MySQL database

Connect MySQL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import mysql from 'mysql2/promise';
export default defineComponent({
  props: {
    mysql: {
      type: "app",
      app: "mysql",
    }
  },
  async run({steps, $}) {
    
    const { host, port, username, password, database } = this.mysql.$auth
    
    const connection = await mysql.createConnection({
      host,
      port,
      user: username,
      password,
      database,
    });
    
    const [rows] = await connection.execute('SELECT NOW()');
    return rows
  },
})

Overview of Telegram Bot

With the Telegram Bot API, you can build bots that perform a variety of tasks,
including:

  • Sending and receiving messages
  • Social networking
  • Content management
  • File sharing
  • Location sharing
  • Bot administration
  • And more!

Connect Telegram Bot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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`,
    })
  },
})