Aircall

Call center software for customer-centric teams

Integrate the Aircall API with the Schedule API

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

Create Contact with Aircall API on Custom Interval from Schedule API
Schedule + Aircall
 
Try it
Create Contact with Aircall API on Daily schedule from Schedule API
Schedule + Aircall
 
Try it
Create Contact with Aircall API on Monthly Schedule from Schedule API
Schedule + Aircall
 
Try it
Create Contact with Aircall API on Weekly schedule from Schedule API
Schedule + Aircall
 
Try it
Get Call with Aircall API on Custom Interval from Schedule API
Schedule + Aircall
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
New Call Ended from the Aircall API

Emit new event when a call ends

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Note Added from the Aircall API

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

 
Try it
Create Contact with the Aircall API

Create a contact in Aircall. See the documentation

 
Try it
Get Call with the Aircall API

Retrieves details about a call. See the docs here

 
Try it
Update Contact with the Aircall API

Update a contact in Aircall. 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 Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.