MySQL

MySQL is an open-source relational database management system.

Integrate the MySQL API with the Trello API

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

Create Row with MySQL API on Card Moved (Instant) from Trello API
Trello + MySQL
 
Try it
Delete Row with MySQL API on Card Moved (Instant) from Trello API
Trello + MySQL
 
Try it
Execute Query with MySQL API on Card Moved (Instant) from Trello API
Trello + MySQL
 
Try it
Execute Stored Procedure with MySQL API on Card Moved (Instant) from Trello API
Trello + MySQL
 
Try it
Find Row with MySQL API on Card Moved (Instant) from Trello API
Trello + MySQL
 
Try it
Card Moved (Instant) from the Trello API

Emit new event each time a card is moved to a list.

 
Try it
New Card (Instant) from the Trello API

Emit new event for each new Trello card on a board.

 
Try it
Card Updates (Instant) from the Trello API

Emit new event for each update to a Trello card.

 
Try it
New Label Added To Card (Instant) from the Trello API

Emit new event for each label added to a card.

 
Try it
New Notification from the Trello API

Emit new event for each new Trello notification for the authenticated user.

 
Try it
Create Row with the MySQL API

Adds a new row. See the docs here

 
Try it
Delete Row with the MySQL API

Delete an existing row. See the docs here

 
Try it
Execute Query with the MySQL API

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

 
Try it
Execute Stored Procedure with the MySQL API

Execute Stored Procedure. See the docs here

 
Try it
Find Row with the MySQL API

Finds a row in a table via a lookup column. 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
26
27
28
29
30
31
32
33
34
35
36
37
import mysql from 'mysql2/promise';

export default defineComponent({
  props: {
    mysql: {
      type: "app",
      app: "mysql",
    }
  },
  async run({steps, $}) {
    const { host, port, username, password, database, ca, cert, key } = this.mysql.$auth;

    const sslConfig = ca && cert && key ? {
      ssl: {
        rejectUnauthorized: true,
        ca,
        cert,
        key,
      },
    } : {};

    const connectionConfig = {
      host,
      port,
      user: username,
      password,
      database,
      ...sslConfig,
    };

    const connection = await mysql.createConnection(connectionConfig);
    
    const [rows] = await connection.execute('SELECT NOW()');
    return rows;
  },
});

Overview of Trello

With the Trello API, you can:

  • Create new boards
  • Add and remove lists from boards
  • Add and remove cards from lists
  • Add comments to cards
  • Add and remove attachments from cards
  • Add and remove members from boards
  • Change the background of boards
  • And more!

Connect Trello

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    trello: {
      type: "app",
      app: "trello",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.trello.com/1/members/me`,
    }, {
      token: {
        key: this.trello.$auth.oauth_access_token,
        secret: this.trello.$auth.oauth_refresh_token,
      },
      oauthSignerUri: this.trello.$auth.oauth_signer_uri,
    })
  },
})