action rudder_delete_technique { label: "Delete technique" description: "Delete a technique from technique editor" provider: rudder method: DELETE path: "/techniques/{techniqueId}/{techniqueVersion}" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["listTechniques"] } data: { type: "object" required: ["resources"] properties: { techniques: { type: "object" required: ["id", "version"] properties: { id: { type: "string" description: "Deleted technique ID" } version: { type: "string" description: "Deleted technique version" } } } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }