Skip to main content
DELETE
http://localhost:3000
/
tag-assignments
/
{id}
curl -X DELETE 'https://api.example.com/tag-assignments/tag_assignment_001' \
  -H 'Authorization: Bearer YOUR_TOKEN'

Path Parameters

id
string
required
The tag assignment ID to delete

Response

Returns 204 No Content on success.
curl -X DELETE 'https://api.example.com/tag-assignments/tag_assignment_001' \
  -H 'Authorization: Bearer YOUR_TOKEN'

Alternative: Delete by Tag and Target

curl -X DELETE 'https://api.example.com/tag-assignments?tagId=tag_engineering&targetId=subject_jane' \
  -H 'Authorization: Bearer YOUR_TOKEN'