# Delete Studio Template

> Learn how to delete a studio template from your workspace

- **URL**: https://orshot.com/docs/api-reference/studio-template-delete

---

## Overview

This endpoint allows you to delete a specific studio template from your workspace using its unique ID.```markdown tab="Endpoint"
https://api.orshot.com/v1/studio/templates/:templateId/delete
```## Request```js
await fetch("https://api.orshot.com/v1/studio/templates/123/delete", {
  method: "DELETE",
  headers: {
    "Content-Type": "application/json",
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>```json
{
  "message": "Template successfully deleted",
  "id": "123"
}
```</Tab>
</Tabs>

## Path Parameters

| Parameter    | Type    | Required | Description                                            |
| ------------ | ------- | -------- | ------------------------------------------------------ |
| `templateId` | Integer | Yes      | The unique identifier of the studio template to delete |

## Webhook

If your workspace has embedded studio with a `webhook_url` configured, a `template.delete` event will be sent automatically when a template is deleted.```json
{
  "event_type": "template.delete",
  "template": {
    "id": 123,
    "name": "My Template",
    "workspace_id": "890"
  },
  "timestamp": "2026-02-17T12:00:00.000Z",
  "workspace_id": "890"
}
```## Error Responses

### Template Not Found (404)```json
{
  "error": "Studio template with ID '123' not found in your workspace"
}
```### Missing Template ID (400)```json
{
  "error": "'templateId' is missing in the request parameters"
}
```### Unauthorized (403)```json
{
  "error": "Access Forbidden: Invalid API Key"
}
```## Notes

- The template must belong to your workspace
- Once deleted, templates cannot be recovered
- The API key must have the appropriate permissions to delete templates

## Rate Limits

- 20 requests per minute per API key