action wowza_create_stream_target_property {
label: "Create a property for a stream target"
description: "This operation creates a property for a stream target. Properties can be applied to a CustomStreamTarget or WowzaStreamTarget whose provider is akamai_cupertino. 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: "/stream_targets/{stream_target_id}/properties"
encoding: json
input: {
type: "object"
properties: {
stream_target_id: {
type: "string"
}
}
required: ["stream_target_id"]
additionalProperties: false
}
output: {
type: "object"
additionalProperties: true
}
}