Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X DELETE "https://api.leavo.ai/backend/tags/880e8400-e29b-41d4-a716-446655440002" \ -H "Authorization: Bearer sua_chave_aqui"
const tagId = '880e8400-e29b-41d4-a716-446655440002'; const response = await fetch(`https://api.leavo.ai/backend/tags/${tagId}`, { method: 'DELETE', headers: { 'Authorization': 'Bearer sua_chave_aqui' } }); if (response.status === 204) { console.log('Tag removida com sucesso'); }
// Sem conteúdo
Remove uma tag permanentemente
204 No Content