action wowza_list_transcoder_output_output_stream_targets { label: "Fetch all output stream targets of an output of a transcoder" description: "This operation shows the details of all of the output stream targets of an output of a transcoder." provider: wowza method: GET path: "/transcoders/{transcoder_id}/outputs/{output_id}/output_stream_targets" encoding: json input: { type: "object" properties: { output_id: { type: "string" } transcoder_id: { type: "string" } } required: ["output_id", "transcoder_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }