action wowza_show_uptime { label: "Fetch an uptime record" description: "This operation shows the details of a specific uptime record for a specific transcoder. An uptime record identifies a transcoding session." provider: wowza method: GET path: "/transcoders/{transcoder_id}/uptimes/{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 } }