PATCH
/
integrations
/
{uniqueKey}
curl --request PATCH \
  --url https://api.nango.dev/integrations/{uniqueKey} \
  --header 'Content-Type: application/json' \
  --data '{
  "unique_key": "<string>",
  "display_name": "<string>",
  "credentials": {
    "type": "OAUTH1",
    "client_id": "<string>",
    "client_secret": "<string>",
    "scopes": "<string>"
  }
}'
{
  "data": {
    "unique_key": "<string>",
    "display_name": "<string>",
    "provider": "<string>",
    "logo": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Path Parameters

uniqueKey
string
required

The integration ID (unique_key) that you created in Nango.

Body

application/json

Response

200
application/json
Successfully updated an integration

The response is of type object.