---
title: Delete a zone snippet
---

[Skip to content](#%5Ftop) 

[API Reference](https://developers.cloudflare.com/api/typescript)

[Snippets](https://developers.cloudflare.com/api/typescript/resources/snippets)

Copy Markdown

Open in **Claude**

Open in **ChatGPT**

Open in **Cursor**

---

**Copy Markdown**

**View as Markdown**

# Delete a zone snippet

client.snippets.delete(stringsnippetName, SnippetDeleteParams { zone\_id } params, RequestOptionsoptions?): [SnippetDeleteResponse](https://developers.cloudflare.com/api/typescript/resources/snippets#%28resource%29%20snippets%20%3E%20%28model%29%20snippet%5Fdelete%5Fresponse%20%3E%20%28schema%29) | null

DELETE/zones/{zone\_id}/snippets/{snippet\_name}

Deletes a snippet belonging to the zone. Returns a 4XX response if the zone or snippet no longer exists.

##### Security

API Token

The preferred authorization scheme for interacting with the Cloudflare API. [Create a token](https://developers.cloudflare.com/fundamentals/api/get-started/create-token/).

**Example:**`Authorization: Bearer Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY`

API Email + API Key

The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.

**Example:**`X-Auth-Email: user@example.com`

The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.

**Example:**`X-Auth-Key: 144c9defac04969c7bfad8efaa8ea194`

##### Accepted Permissions (at least one required)

`Snippets Write`

##### ParametersExpand Collapse 

snippetName: string

Identify the snippet.

params: SnippetDeleteParams { zone\_id } 

zone\_id: string

Use this field to specify the unique ID of the zone.

##### ReturnsExpand Collapse 

SnippetDeleteResponse \= unknown

Contain the response result.

### Delete a zone snippet

TypeScript

HTTPHTTP

TypeScriptTypeScript

PythonPython

GoGo

TerraformTerraform

```
import Cloudflare from 'cloudflare';

const client = new Cloudflare({
  apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted
});

const snippet = await client.snippets.delete('my_snippet', {
  zone_id: '9f1839b6152d298aca64c4e906b6d074',
});

console.log(snippet);
```

200 example

```
{
  "errors": [
    {
      "message": "something bad happened",
      "code": 10000
    }
  ],
  "messages": [
    {
      "message": "something bad happened",
      "code": 10000
    }
  ],
  "result": {},
  "success": true
}
```

##### Returns Examples

200 example

```
{
  "errors": [
    {
      "message": "something bad happened",
      "code": 10000
    }
  ],
  "messages": [
    {
      "message": "something bad happened",
      "code": 10000
    }
  ],
  "result": {},
  "success": true
}
```