action wowza_delete_transcoder_property { label: "Delete a transcoder's property" description: "This operation deletes a specific property from a specific transcoder." provider: wowza method: DELETE 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 } }