Documentation Index
Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
Authorize Aircall
Go to Connections -> Add Test Connection -> Authorize, then log in to Aircall. Later, youâll let your users do the same directly from your app. Call the Aircall API
Letâs make your first request to the Aircall API (fetch a list of users). Replace the placeholders below with your secret key, integration ID, and connection ID:curl "https://api.nango.dev/proxy/v1/users" \
-H "Authorization: Bearer <NANGO-SECRET-KEY>" \
-H "Provider-Config-Key: <INTEGRATION-ID>" \
-H "Connection-Id: <CONNECTION-ID>"
Install Nangoâs backend SDK with npm i @nangohq/node. Then run:import { Nango } from '@nangohq/node';
const nango = new Nango({ secretKey: '<NANGO-SECRET-KEY>' });
const res = await nango.get({
endpoint: '/v1/users',
providerConfigKey: '<INTEGRATION-ID>',
connectionId: '<CONNECTION-ID>'
});
console.log(res.data);
Or fetch credentials dynamically via the Node SDK or API. â
Youâre connected! Check the Logs tab in Nango to inspect requests.Create a partner-specific account
Prepare your URIs
Before proceeding, make sure you have these URIs ready:
- redirect_uri:
https://api.nango.dev/oauth/callback
- install_uri: Your applicationâs setup page URL. To satisfy Aircallâs requirement, you can provide a link that shows users what the app is about. This is only necessary if you are initiating the authorization flow outside Nango; since you are initiating it within Nango, it is not required.
Refer to the Aircall OAuth documentation to understand how these URIs are used in the OAuth process. Request OAuth credentials
- Email marketplace@aircall.io and request OAuth credentials.
- In your message, mention that youâre building a Technology Partner app and provide your install_uri and redirect_uri.
- Aircall will reply with your Client ID and Client Secret once approved, youâll need these when configuring your integration in Nango.
- Aircall requires becoming a technology partner before you can create OAuth applications.
- Rate limiting applies to API requests. Check the rate limiting documentation for current limits.
- Some API endpoints may require specific scopes or permission levels.