`DELETE /api/v1/agents/{node_id}/tags/{key}` — remove a single tag.
DELETE
/api/v1/agents/{node_id}/tags/{key}
const url = 'https://example.com/api/v1/agents/example/tags/example';const options = {method: 'DELETE'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/api/v1/agents/example/tags/exampleParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” node_id
required
string
Agent node ID
key
required
string
Tag key
Responses
Section titled “ Responses ”Tag removed
Agent or tag not found