Skip to main content

Documentation Index

Fetch the complete documentation index at: https://nango-scrips-ref.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Nango lets you store arbitrary metadata on individual connections. This is useful for customizing an integration’s behavior per end-customer. Connection metadata can be set, updated & retrieved with the SDK (reference) & API (reference). It can also be retrieved on the Nango UI, in the Connections tab> Select Connection > Authorization tab: Set connection metadata
await nango.setMetadata(
    '<INTEGRATION-ID>', 
    '<CONNECTION-ID>', 
    { any_key: 'Any Value' }
);
Update connection metadata
await nango.setMetadata(
    '<INTEGRATION-ID>', 
    '<CONNECTION-ID>', 
    { any_key: 'Any Value' }
);
Get connection metadata
await nango.getMetadata('<INTEGRATION-ID>', '<CONNECTION-ID>');
Questions, problems, feedback? Please reach out in the Slack community.