Skip to content

Remove tags from template

Remove tags from an existing template.
This endpoint allows you to remove specific tags from a template.

Request Body

The request body should be an array of strings containing the tags you want to remove.

Sample Request

Here’s a sample request to remove tags from a template:

DELETE /v1/template/{templateId}/tags
fetch(`https://api.templated.io/v1/template/${template_id}/tags`, {
method: 'DELETE',
headers: {
'Authorization': `Bearer ${API_KEY}`,
'Content-Type': 'application/json'
},
body: JSON.stringify([
"social-media",
"instagram"
])
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));