action wowza_show_transcoder_property { label: "Fetch a property for a transcoder" description: "This operation shows the details of a specific property for a specific transcoder." provider: wowza method: GET path: "/transcoders/{transcoder_id}/properties/{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 } }