Smithery

auth_configs.update

Updates the status of an authentication configuration to either enabled or disabled. Disabled configurations cannot be used for new connections.

Remote smithery/composio

Other tools also called auth_configs.update? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "nanoid": {
      "type": "string",
      "format": "authConfigId",
      "description": "The unique identifier of the authentication configuration to update"
    },
    "status": {
      "enum": [
        "ENABLED",
        "DISABLED"
      ],
      "type": "string",
      "description": "The new status to set for the auth configuration"
    }
  }
}