Delete Studio Template
Learn how to delete a studio template from your workspace
Overview#
This endpoint allows you to delete a specific studio template from your workspace using its unique ID.
https://api.orshot.com/v1/studio/templates/:templateId/deleteRequest#
await fetch("https://api.orshot.com/v1/studio/templates/123/delete", {
method: "DELETE",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer <ORSHOT_API_KEY>",
},
});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.
{
"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)#
{
"error": "Studio template with ID '123' not found in your workspace"
}Missing Template ID (400)#
{
"error": "'templateId' is missing in the request parameters"
}Unauthorized (403)#
{
"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

All Set? Let's Start Automating
- Image, PDF and Video Generation via API
- Canva like editor with AI and smart features
- No-Code Integrations (Zapier, Make, n8n etc.)
- Embed Orshot Studio in your app
- Start Free. No credit card required. Cancel anytime.