action wowza_create_stream_target_geoblock { label: "Create geo-blocking for a stream target" description: "This operation allows you to block or whitelist viewing of a stream target by geographic location. Only stream targets whose type is WowzaStreamTarget can be geo-blocked. For more information see the technical article [How to geo-block stream targets by using the Wowza Streaming Cloud REST API](https://www.wowza.com/docs/how-to-geo-block-stream-targets-by-using-the-wowza-streaming-cloud-rest-api)." provider: wowza method: POST path: "/stream_targets/{stream_target_id}/geoblock" encoding: json input: { type: "object" properties: { stream_target_id: { type: "string" } } required: ["stream_target_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }