action configcat_delete_tag { label: "Delete Tag" description: "This endpoint deletes a Tag identified by the `tagId` parameter. To remove a Tag from a Feature Flag or Setting use the [Update Flag](#operation/update-setting) endpoint." provider: configcat method: DELETE path: "/v1/tags/{tagId}" encoding: json input: { type: "object" properties: { tagId: { type: "integer" format: "int64" } } required: ["tagId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }