Microsoft Azure SQL Database

Build apps that scale with managed and intelligent SQL database in the cloud.

Integrate the Microsoft Azure SQL Database API with the Airtable (OAuth) API

Setup the Microsoft Azure SQL Database API trigger to run a workflow which integrates with the Airtable (OAuth) API. Pipedream's integration platform allows you to integrate Microsoft Azure SQL Database and Airtable (OAuth) remarkably fast. Free for developers.

Create Comment with Airtable API on New Column from Microsoft Azure SQL Database API
Microsoft Azure SQL Database + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New or Updated Row from Microsoft Azure SQL Database API
Microsoft Azure SQL Database + Airtable (OAuth)
 
Try it
Create Field with Airtable API on New Column from Microsoft Azure SQL Database API
Microsoft Azure SQL Database + Airtable (OAuth)
 
Try it
Create Field with Airtable API on New or Updated Row from Microsoft Azure SQL Database API
Microsoft Azure SQL Database + Airtable (OAuth)
 
Try it
Create Multiple Records with Airtable API on New Column from Microsoft Azure SQL Database API
Microsoft Azure SQL Database + Airtable (OAuth)
 
Try it
New Column from the Microsoft Azure SQL Database API

Triggers when a new column is added to a table.

 
Try it
New or Updated Row from the Microsoft Azure SQL Database API

Triggers when a new row is added or an existing row is updated.

 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
New Modified or Deleted Records (Instant) from the Airtable (OAuth) API

Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation

 
Try it
New or Modified Field from the Airtable (OAuth) API

Emit new event for each new or modified field in a table

 
Try it
Execute Query with the Microsoft Azure SQL Database API

Executes a SQL query and returns the results. See the documentation

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Execute SQL Query with the Microsoft Azure SQL Database API

Execute a custom SQL query. See our docs to learn more about working with SQL in Pipedream.

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Insert Row with the Microsoft Azure SQL Database API

Inserts a new row in a table. See the documentation

 
Try it

Overview of Microsoft Azure SQL Database

The Microsoft Azure SQL Database API allows you to manage and interact with your SQL databases hosted on Azure directly from Pipedream. It provides a serverless way to run SQL queries, manage tables, and handle database management tasks. You can create, read, update, and delete database records, execute stored procedures, and perform a variety of other SQL operations. Leveraging this API on Pipedream enables you to automate workflows, respond to database events in real-time, and integrate with countless other apps and services.

Connect Microsoft Azure SQL Database

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import azure_sql from '@pipedream/azure_sql';

export default defineComponent({
  props: {
    azure_sql,
  },
  async run({ steps, $ }) {
    // Component source code:
    // https://github.com/PipedreamHQ/pipedream/tree/master/components/azure_sql

    const queryObj = {
      query: "SELECT GETDATE()",
      values: [],
    };
    return await this.azure_sql.executeQuery(queryObj);
  },
});

Overview of Airtable (OAuth)

Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.

Connect Airtable (OAuth)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})