Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Generate link tokens for account connections
curl -X POST 'https://api.usehandled.io/api/v1/ipaas/link-token' \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ -H 'Content-Type: application/json' \ -d '{ "tenant_id": "customer-123" }'
tenant_id
integrated_account_id
integration_name
{ "link_token": "abc123-def456-ghi789" }
import authenticate from '@handled/link-sdk'; authenticate('abc123-def456-ghi789') .then(response => console.log('Connected:', response)) .catch(error => console.error('Error:', error));
https://ipaas.usehandled.io/connect-account?link_token=abc123-def456-ghi789
curl -X POST 'https://api.usehandled.io/api/v1/ipaas/link-token' \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ -H 'Content-Type: application/json' \ -d '{ "integrated_account_id": "acc_456" }'
curl -X POST 'https://api.usehandled.io/api/v1/ipaas/link-token' \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ -H 'Content-Type: application/json' \ -d '{ "tenant_id": "customer-123", "integration_name": "shiphero" }'