Tags
Delete Tag
Deletes a tag and removes it from all monitors it was assigned to. Only the tag owner or an admin may delete a tag.
DELETE /api/tags/{id}
Path parameter {id} is the tag's numeric id.
Deleting a tag cascades: all monitor-tag assignments for that tag are also removed automatically.
Example (cURL)
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"
TAG_ID=1
curl -X DELETE "$BASE_URL/api/tags/$TAG_ID" \
-H "Authorization: Bearer $TOKEN"Response
Returns 204 No Content on success.
Common errors
401 Unauthorizedwhen you are not logged in403 Forbiddenwhen you are not the tag owner or an admin404 Not Foundwhen the tag does not exist or is not visible to you