## Disable Content Scanning `client.contentScanning.disable(ContentScanningDisableParamsparams, RequestOptionsoptions?): ContentScanningDisableResponse` **post** `/zones/{zone_id}/content-upload-scan/disable` Disable Content Scanning. ### Parameters - `params: ContentScanningDisableParams` - `zone_id: string` Defines an identifier. ### Returns - `ContentScanningDisableResponse = unknown` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const response = await client.contentScanning.disable({ zone_id: '023e105f4ecef8ad9ca31a8372d0c353', }); console.log(response); ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "result": {}, "success": true } ```