action wowza_delete_stream_target_property { label: "Delete a stream target property" description: "This operation removes a property from a stream target." provider: wowza method: DELETE path: "/stream_targets/{stream_target_id}/properties/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } stream_target_id: { type: "string" } } required: ["id", "stream_target_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }