**Version: 202601**

# Delete page-builder custom template

**DELETE** `/openapi/2026-01/themes/page-builder/custom-templates/:template_id`

Delete a page-builder custom template by id.

## Request

**Path Parameters**

- `template_id` string (required)

  Template id to delete

## Responses

**200**

OK

**application/json**

**Schema | Example**

**Schema**

- `code` string

  error code
- `message` string

  error message
- `data` object

  - `data` object

    The delete is a soft delete (the record is kept and flagged); this object is empty when the downstream returns no body

```json
{
  "code": "string",
  "message": "string",
  "data": {
    "data": {}
  }
}
```
