action snyk_delete_tag_from_group { label: "Delete tag from group" description: "" provider: snyk method: POST path: "/group/{groupId}/tags/delete" encoding: json input: { type: "object" properties: { force: { type: "boolean" description: "force delete tag that has entities (default is `false`)." } groupId: { type: "string" } key: { type: "string" description: "Valid tag key." } value: { type: "string" description: "Valid tag value." } } required: ["groupId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }