POST
/
config
curl --request POST \
  --url https://api.nango.dev/config \
  --header 'Content-Type: application/json' \
  --data '{
  "provider_config_key": "<string>",
  "provider": "<string>",
  "oauth_client_id": "<string>",
  "oauth_client_secret": "<string>",
  "oauth_scopes": "<string>"
}'
{
  "config": {
    "unique_key": "slack-nango-community",
    "provider": "slack"
  }
}
{
  "config": {
    "unique_key": "slack-nango-community",
    "provider": "slack"
  }
}

Body

application/json
provider_config_key
string
required

A unique integration ID, which you will use in the other API calls to reference this integration.

provider
string
required

The Nango API Configuration.

oauth_client_id
string

The ID of your OAuth app (registed with the external API). Required for OAuth APIs.

oauth_client_secret
string

The secret of your OAuth app (registed with the external API). Required for OAuth APIs.

oauth_scopes
string

Comma separated list of scopes.

Response

200
application/json
Successfully created an integration
config
object
required