# `extension.disable` Disable an extension. Its payment method / hooks / panels stop immediately. - **scope**: `store:admin` - **storefront-visible** (bumps the catalog generation): yes - **destructive**: no ## Payload | field | type | required | notes | |---|---|---|---| | `extensionId` | string (/^[a-z0-9-]+\.[a-z0-9-]+$/) | yes | | ### JSON Schema ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "extensionId": { "type": "string", "pattern": "^[a-z0-9-]+\\.[a-z0-9-]+$" } }, "required": [ "extensionId" ], "additionalProperties": false } ```