action wowza_show_transcoder_output { label: "Fetch an output" description: "This operation shows the details of a specific output rendition for a specific transcoder." provider: wowza method: GET 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 } }