From 0ff2730eba565264681e691c640d771d0227f88d Mon Sep 17 00:00:00 2001 From: sajan jaiswal Date: Sun, 28 Dec 2025 18:55:27 +0530 Subject: [PATCH] docs: update Aircall provider guide with actions and usage details --- src/provider-guides/aircall.mdx | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/src/provider-guides/aircall.mdx b/src/provider-guides/aircall.mdx index 4e34f7d7..a6e9ef09 100644 --- a/src/provider-guides/aircall.mdx +++ b/src/provider-guides/aircall.mdx @@ -4,15 +4,30 @@ slug: "aircall" excerpt: "" hidden: false createdAt: "Mon Jun 24 2024 08:32:49 GMT+0000 (Coordinated Universal Time)" -updatedAt: "Thu Aug 08 2024 22:39:27 GMT+0000 (Coordinated Universal Time)" +updatedAt: "Sun Dec 28 2025 18:00:00 GMT+0000 (Coordinated Universal Time)" --- + ## What's Supported ### Supported Actions This connector supports: + +- [Read Actions](/read-actions). +- [Write Actions](/write-actions). - [Proxy Actions](/proxy-actions), using the base URL `https://api.aircall.io`. +### Supported Objects + +The Aircall connector supports writing to and reading from the following objects: + +- [Calls](https://developer.aircall.io/api-references/#calls) (`calls`) +- [Users](https://developer.aircall.io/api-references/#users) (`users`) +- [Contacts](https://developer.aircall.io/api-references/#contacts) (`contacts`) +- [Numbers](https://developer.aircall.io/api-references/#numbers) (`numbers`) +- [Teams](https://developer.aircall.io/api-references/#teams) (`teams`) +- [Tags](https://developer.aircall.io/api-references/#tags) (`tags`) + ## Before You Get Started To integrate **Aircall** with **Ampersand**, you must register an **Aircall OAuth2** application. To do this, contact `marketplace@aircall.io` and provide the following details: @@ -44,3 +59,15 @@ Once you have your Aircall app set up and registered, you can proceed to connect ![Dashboard](/images/provider-guides/053beed-aircall.gif) 7. Click **Save Changes**. + +## Using the connector + +To start integrating with Aircall: + +- Create a manifest file like the [example](https://github.com/amp-labs/samples/blob/main/aircall/amp.yaml). +- Deploy it using the [amp CLI](/cli/overview). +- Embed the [InstallIntegration](/embeddable-ui-components#install-integration) UI component. +- Start using the connector! + - If your integration has [Read Actions](/read-actions), you'll start getting webhook messages. + - If your integration has [Write Actions](/write-actions), you can start making API calls to our Write API. + - If your integration has [Proxy Actions](/proxy-actions), you can start making Proxy API calls.