Delete Template
Delete a specific image template by its ID.
ℹ️
You will need to authenticate to use this API. See authentication.
⚠️
This action is irreversible. Once a template is deleted, it cannot be recovered.
Request
DELETE https://api.ojo.so/v1/template/:templateIdPath Parameters
| Parameter | Type | Description |
|---|---|---|
| templateId | string | The unique identifier of the template to delete |
curl --request DELETE \
--url https://api.ojo.so/v1/template/<Replace with template ID> \
--header 'Authorization: Bearer <API Key>'Response
Template successfully deleted.
{
"deleted": true
}