- Node
- REST API
- Node
- REST API
- Node
- REST API
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Step-by-step guide on how to store customer-specific data retrievable in your app, in Nango scripts, and on the Nango UI.
await nango.setMetadata(
'<INTEGRATION-ID>',
'<CONNECTION-ID>',
{ any_key: 'Any Value' }
);
curl --request POST \
--url https://api.nango.dev/connection/<CONNECTION-ID>/metadata \
--header 'Authorization: Bearer <TOKEN>' \
--header 'Content-Type: application/json' \
--header 'Provider-Config-Key: <INTEGRATION-ID>' \
--data '{ "any_key": "Any Value" }'
await nango.setMetadata(
'<INTEGRATION-ID>',
'<CONNECTION-ID>',
{ any_key: 'Any Value' }
);
curl --request PATCH \
--url https://api.nango.dev/connection/<CONNECTION-ID>/metadata \
--header 'Authorization: Bearer <TOKEN>' \
--header 'Content-Type: application/json' \
--header 'Provider-Config-Key: <INTEGRATION-ID>' \
--data '{ "any-key": "Any Value" }'
await nango.getMetadata('<INTEGRATION-ID>', '<CONNECTION-ID>');
curl --request GET \
--url 'https://api.nango.dev/connection/<CONNECTION-ID>?provider_config_key=<INTEGRATION-ID>' \
--header 'Authorization: Bearer <TOKEN>'
Was this page helpful?