Delete email template
DELETE/v1/email/template/:id
This endpoint deletes a reusable email template by ID
Request
Path Parameters
id stringrequired
Template ID
Responses
- 200
- 400
- 404
Template deleted
- application/json
- Schema
- Example (from schema)
Schema
success boolean
{
"success": true
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Template not found
- application/json
- Schema
- Example (from schema)
Schema
error string
success boolean
{
"error": "string",
"success": false
}
Loading...