Integrations
Get an integration
Returns a specific integration
GET
/
config
/
{providerConfigKey}
Authorization
Path
Query
curl --request GET \
--url https://api.nango.dev/config/{providerConfigKey}
{
"config": {
"unique_key": "slack-nango-community",
"provider": "slack",
"syncs": [
{
"name": "slack-messages",
"created_at": "2023-10-16T08:45:26.241Z",
"updated_at": "2023-10-16T08:45:26.241Z",
"description": "Continuously fetch the latest Slack messages. Details: full refresh. Required scopes(s): channels:read, groups:read, mpim:read, im:read"
}
],
"actions": [
{
"name": "github-list-repos-action",
"created_at": "2023-10-17T17:28:03.839Z",
"updated_at": "2023-10-17T17:28:03.839Z"
}
]
}
}
Path Parameters
providerConfigKey
string
requiredThe integration ID that you created in Nango.
Query Parameters
include_creds
boolean
If true, the response will contain the client ID, secret, scopes, auth_mode and app link - if applicable. include_creds is false by default.
Response
200 - application/json
config
object
requiredcurl --request GET \
--url https://api.nango.dev/config/{providerConfigKey}
{
"config": {
"unique_key": "slack-nango-community",
"provider": "slack",
"syncs": [
{
"name": "slack-messages",
"created_at": "2023-10-16T08:45:26.241Z",
"updated_at": "2023-10-16T08:45:26.241Z",
"description": "Continuously fetch the latest Slack messages. Details: full refresh. Required scopes(s): channels:read, groups:read, mpim:read, im:read"
}
],
"actions": [
{
"name": "github-list-repos-action",
"created_at": "2023-10-17T17:28:03.839Z",
"updated_at": "2023-10-17T17:28:03.839Z"
}
]
}
}