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.
🚀 Quickstart
Connect to Altrata with Nango and see data flow in 2 minutes.
Authorize Altrata
Go to Connections -> Add Test Connection -> Authorize, then enter your Service Hostname, API Key, Username, and Password. Later, you’ll let your users do the same directly from your app. Call the Altrata API
Let’s make your first request to the Altrata Events API. Replace the placeholders below with your secret key, integration ID, and connection ID:curl -X POST "https://api.nango.dev/proxy/v1/graphql" \
-H "Authorization: Bearer <NANGO-SECRET-KEY>" \
-H "Provider-Config-Key: <INTEGRATION-ID>" \
-H "Connection-Id: <CONNECTION-ID>" \
-H "Content-Type: application/json" \
-d '{
"query": "query { events(altrataId: \"1-per-11111111\", filterType: ANNOUNCEMENTS, sortType: EVENT_DATE) { __typename ... on EventsResponse { events { eventId eventText eventPublishedDate startRoleTitle endRoleTitle } } } }"
}'
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.post({
endpoint: '/v1/graphql',
providerConfigKey: '<INTEGRATION-ID>',
connectionId: '<CONNECTION-ID>',
data: {
query: `query {
events(altrataId: "1-per-11111111", filterType: ANNOUNCEMENTS, sortType: EVENT_DATE) {
__typename
... on EventsResponse {
events {
eventId
eventText
eventPublishedDate
startRoleTitle
endRoleTitle
}
}
}
}`
}
});
console.log(res.data);
The service hostname is set when you create the connection — see the connect guide for the full list of Altrata service URLs.Or fetch credentials with the Node SDK or API.✅ You’re connected! Check the Logs tab in Nango to inspect requests. Implement Nango in your app
Follow our Auth implementation guide to integrate Nango in your app.To obtain your own credentials, follow the connect guide linked below.
📚 Altrata integration guides
Nango maintained guides for common use cases.
Official docs: Altrata API docs
🧩 Pre-built syncs & actions for Altrata
Enable them in your dashboard. Extend and customize to fit your needs.
No pre-built syncs or actions available yet.