Smithery

connected_accounts.status.update

Updates the status of a connected account to either enabled (active) or disabled (inactive). Disabled accounts cannot be used for API calls but remain in the database.

Remote smithery/composio

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

Input Schema


            {
  "type": "object",
  "properties": {
    "nanoId": {
      "type": "string",
      "format": "connectedAccountId",
      "description": "The unique identifier of the connected account"
    },
    "enabled": {
      "type": "boolean",
      "description": "Set to true to enable the account or false to disable it"
    }
  }
}