Integrate Nango - Overview
High-level steps to ship an integration with Nango.
The steps to integrate Nango.
1. Get user permission in your app
Use the Nango frontend SDK to get the user’s permission to access their external data.
Nango guides the user through the (O)Auth flow in a popup window.
Store the connectionId
& integrationId
in your database to retrieve the user’s data later.
When a new user connects your integration, Nango automatically starts fetching their data (e.g. issues, contacts, files, etc.) in the background.
2. Receive data update notifications
Nango uses webhooks to notify your backend when external user data has been added, updated or deleted. Nango will only alert you when there are actual changes.
3. Collect and save the new data
When you receive the webhook, fetch the most recent data from Nango using the backend SDK or API.
Nango returns the data in the schema of your choice, which can be standardized across different APIs.
You can directly save this data to your database, or process it further, as needed.
4. Write back to external APIs
Push updates back to external APIs in a way that is:
- Synchronous: Have your changes immediately reflected.
- Unified: Benefit from standardized schemas across different APIs.
- Customizable: Support intricate workflows and composed API calls.
Questions, problems, feedback? Please reach out in the Slack community.
Was this page helpful?