action wowza_create_transcoder_property { label: "Create a property for a transcoder" description: "This operation creates a property for a transcoder. For more information see the technical article [How to set advanced properties by using the Wowza Streaming Cloud REST API](https://www.wowza.com/docs/how-to-set-advanced-properties-by-using-the-wowza-streaming-cloud-rest-api)." provider: wowza method: POST path: "/transcoders/{transcoder_id}/properties" encoding: json input: { type: "object" properties: { transcoder_id: { type: "string" } } required: ["transcoder_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }