action wowza_delete_transcoder_output { label: "Delete an output" description: "This operation deletes an output, including all of its assigned targets." provider: wowza method: DELETE path: "/transcoders/{transcoder_id}/outputs/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } transcoder_id: { type: "string" } } required: ["id", "transcoder_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }