Aircall

Call center software for customer-centric teams

Integrate the Aircall API with the Airtable (OAuth) API

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

Create Comment with Airtable API on New Call Ended from Aircall API
Aircall + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Note Added from Aircall API
Aircall + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Number Created from Aircall API
Aircall + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Tag Added from Aircall API
Aircall + Airtable (OAuth)
 
Try it
Create Contact with Aircall API on New Field from Airtable (OAuth) API
Airtable (OAuth) + Aircall
 
Try it
New Call Ended from the Aircall API

Emit new event when a call ends

 
Try it
New Note Added from the Aircall API

Emit new event when a new note is added to a call

 
Try it
New Number Created from the Aircall API

Emit new event when a number is created

 
Try it
New Tag Added from the Aircall API

Emit new event when a tag is added to a call

 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
Create Contact with the Aircall API

Create a contact in Aircall. See the documentation

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Get Call with the Aircall API

Retrieves details about a call. See the docs here

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Create Multiple Records with the Airtable (OAuth) API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation

 
Try it

Overview of Aircall

The Aircall API allows you to harness telephony features within your applications, enabling you to manage calls, contacts, users, and more programmatically. With Pipedream's capability to leverage this API, you can automate call logging, synchronize contact information across platforms, dynamically route calls based on business logic, and generate analytics and reports.

Connect Aircall

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: {
    aircall: {
      type: "app",
      app: "aircall",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.aircall.io/v1/integrations/me`,
      headers: {
        Authorization: `Bearer ${this.aircall.$auth.oauth_access_token}`,
      },
    })
  },
})

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}`,
      },
    })
  },
})