action wowza_index_uptimes { label: "Fetch all uptime records for a transcoder" description: "This operation shows all of the uptime records for a specific transcoder. An uptime record identifies a specific transcoding session." provider: wowza method: GET path: "/transcoders/{transcoder_id}/uptimes" encoding: json input: { type: "object" properties: { transcoder_id: { type: "string" } } required: ["transcoder_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }