---
title: "Enable or disable all tools on a connection"
method: PATCH
path: "/v1/integrations/connections/{connection_id}/tools"
tags: ["integrations"]
---

# Enable or disable all tools on a connection

`PATCH /v1/integrations/connections/{connection_id}/tools`

Flip every tool on the connection on or off in one request.

The "enable all / disable all" control. ``is_enabled`` is applied to all of
the connection's tools (org-scoped). Verifies parent-connection org
ownership first, so a foreign-org ``connection_id`` 404s. Returns the full,
updated tool list ordered by ``tool_path`` so the client can refresh its
switches in one shot.

## Path parameters

- `connection_id` string, uuid, required

## Request body

- ConnectionToolsBulkToggleRequest — Body for the per-connection "enable all / disable all" switch. Applies a single ``is_enabled`` value to **every** tool on the connection. Unlike :class:`ConnectionToolPatchRequest` the field is required — there is nothing to no-op on a bulk flip.
  - `is_enabled` boolean, required

## Response `200`

Successful Response

- ConnectionToolResponse[]
  - `id` string, uuid, required
  - `connection_id` string, uuid, required
  - `organization_id` string, uuid, required
  - `integration_key` 'slack' | 'custom_mcp' | 'notion' | 'google_drive' | 'calcom' | 'twilio' | 'email', required — Stable identifier for each supported integration. The string value must match the vendor's per-provider identifier (for Nango: ``provider_config_key``). Persisted on ``integration_connections.integration_key`` and ``integration_connection_tools.integration_key``. Adding a new integration: append a member here, add an ``IntegrationSpec`` to ``INTEGRATIONS``, register the provider in the vendor cloud via ``src/integrations/bootstrap.py`` (Step 3).
  - `nickname_slug` string, required
  - `tool_path` string, required
  - `slug` string, required
  - `display_name` string, required
  - `description` string, nullable, required
  - `input_schema` object, required
  - `response_schema` object, nullable
  - `response_field_map` object, nullable
  - `input_defaults` object, nullable
  - `is_enabled` boolean, required
  - `last_seen_at` string, date-time, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `stale_field_paths` string[], required — Saved field-map paths no longer present in the shape (ENG-631 D4).
  - `default_count` integer, required — How many input fields carry an operator *default* (ENG-590 / PRD 7.7).
  - `pinned_count` integer, required — How many input fields are operator-*pinned* (ENG-590).
  - `stale_input_fields` string[], required — Configured input fields removed/renamed/retyped by a re-sync (PRD 7.6).
  - `merged_input_preview` object, required — ``input_schema`` with each operator value injected (PRD 7.8).

## Other responses

- `400` — Bad request
- `401` — Authentication required
- `404` — Resource not found
- `422` — Validation Error

---

[API](https://skmtc.net/oneloop-hq/apis/feather-api.md) · [All operations](https://skmtc.net/oneloop-hq/apis/feather-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/oneloop-hq/feather-api/versions/888bdd5c076e/schema)
