action wowza_show_stream_target_property {
label: "Fetch a property of a stream target"
description: "This operation shows the details of a specific property assigned to a specific stream target. Properties can be applied to a CustomStreamTarget or WowzaStreamTarget whose provider is akamai_cupertino."
provider: wowza
method: GET
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
}
}