Operations related to stream targets. A stream target is a destination for a stream. Stream targets can be Wowza Video edge resources; custom, external destinations, target destinations.
Wowza CDN stream targets distribute streams to players. When you create a live stream in the API, a Wowza CDN stream target is created automatically.
In contrast, you can use /stream_targets/wowza_cdn
endpoints to manually create Wowza CDN stream targets and associate them with transcoders.
With Wowza CDN stream targets, you can use geo-blocking to control locations where your stream can be viewed, and you can use token authentication to restrict access to streams. Advanced configuration properties are available for Wowza CDN stream targets.
Custom stream targets connect to external CDNs to deliver streams to viewers. You manually create custom stream targets and associate them to a transcoder.
This operation lists limited details for custom stream targets and Wowza CDN stream targets. For detailed information, fetch a single stream target of a specific type.
assignable | boolean Returns stream targets that are assignable to an output. If true, all assignable stream targets are included in the response. If the parameter isn't used, all assignable and unassignable stream targets are included in the response. A primary_stream_target is a single stream target that automatically gets created for all output renditions (the ABR ladder) created when you create a live stream through a live stream flow. Primary_stream_targets cannot be deleted or reassigned so they will not be listed when using the assignable parameter. Example: api.video.wowza.com/api/v2.0/stream_targets?assignable=true |
filter | string Restricts the data that gets returned by filtering on one or more values associated with a field. Construct a filter using a two-part expression that specifies the field on which to filter and the logic to use to filter. Filters use a zero-based index. For valid filter operators and filter fields, see How to get filtered query results with the Wowza Video REST API. Example: filter[0][field]=state&filter[0][eq]=stopped |
page | integer Returns a paginated view of results from the HTTP request. Specify a positive integer to indicate which page of the results should be displayed. The default is 1. For more information and examples, see Get paginated query results with the Wowza Video REST API. |
per_page | integer For use with the page parameter. Indicates how many records should be included in a page of results. A valid value is any positive integer. The default and maximum value is 1000. |
Success
Unauthorized
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/stream_targets"
{- "stream_targets": [
- {
- "created_at": "2020-01-29T17:16:22.007Z",
- "id": "qvvjyjjk",
- "name": "My RTMP Stream Target",
- "state": "deactivated",
- "type": "wowza",
- "updated_at": "2020-01-31T02:05:18.007Z"
}, - {
- "created_at": "2020-01-28T17:16:22.007Z",
- "id": "j75mlh3v",
- "name": "My HLS Push Stream Target",
- "state": "activated",
- "type": "custom",
- "updated_at": "2020-01-31T11:02:53.007Z"
}
]
}
This operation shows the details of a specific stream target whether it be a Wowza CDN, custom, Facebook Live, or LinkedIn Live stream target.
Success
object (stream_target_custom) | |
object (stream_target_wowza_cdn) | |
object (stream_target_facebook) | |
object (stream_target_linkedin) |
Unauthorized
Forbidden
Not Found
Gone
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/stream_targets/2adffc17"
{- "stream_target_custom": {
- "created_at": "2020-01-28T17:16:22.011Z",
- "delivery_protocols": [
- "rtmp"
], - "id": "RMS45lfvx",
- "name": "My Custom Stream Target",
- "playback_urls": {
- "rtmp": [
- {
- "name": "default",
- "url": "rtmp://cp123456.live.edgefcs.net/live/[EVENT]@654321"
}
]
}, - "primary_url": "rtmp://p.ep123456.i.akamaientrypoint.net/EntryPoint",
- "provider": "rtmp",
- "stream_name": "c8467d50@123456",
- "updated_at": "2020-01-30T19:14:11.011Z"
}, - "stream_target_wowza_cdn": {
- "id": "abc45lfyz",
- "name": "My Wowza CDN Stream Target",
- "state": "activated",
- "stream_name": "9a00105a",
- "delivery_protocols": [
- "hls"
], - "playback_urls": {
- "hls": [
- {
- "name": "default",
}
]
}, - "token_auth_enabled": false,
- "token_auth_playlist_only": false,
- "geoblock_enabled": true,
- "geoblock_by_location": "allow",
- "geoblock_country_codes": "DE, US",
- "geoblock_ip_override": "deny",
- "geoblock_ip_addresses": "77.12.34.567, 78.23.45.678",
- "referer_enabled": true,
- "referer_allow_empty": false,
- "referer_policy": "allow",
- "referer_domains": "example.com, example2.com",
- "force_ssl_playback": false,
- "created_at": "2020-01-28T17:16:22.086Z",
- "updated_at": "2020-01-30T15:33:43.086Z"
}, - "stream_target_facebook": {
- "created_at": "2020-01-28T17:16:22.011Z",
- "id": "RMS45lfvx",
- "type": "FAcebookStreamTarget",
- "name": "My Facebook Stream Target",
- "title": "My Facebook Stream Target",
- "description": "This is my Facebook stream.",
- "delivery_protocols": [
- "rtmp"
], - "facebook_resource_id": 277111822674604,
- "facebook_resource_type": "timeline",
- "facebook_save_vod": true,
- "facebook_token": "EAAX01HBCtQ0BO0LTScgBW4OLwqqI9DZAVLwu6lUDbKhfQH5leQnJu3FvNn9d5p32YZAgKZByLUxKiSZCcZBsUm72TPwnW3NiZCgZAKbn8jkvqUE2TRnVZBcSjeSt3eCctlYS8VPfGRm2Sew9h4C4MNvNtS8FuEckrZCE1putjYaPOWzVphAZCDAZBKlw62u",
- "facebook_privacy": "self",
- "updated_at": "2020-01-30T19:14:11.011Z"
}, - "stream_target_linkedin": {
- "id": "RMS45lfvx",
- "title": "LinkedIn Live",
- "description": "This is my LinkedIn Live stream.",
- "region": "WEST_EUROPE",
- "name": "My LinkedIn Stream Target",
- "urn": "Xd4aGv6ZXR",
- "member_type": "person",
- "member_description": "Drew Bennet",
- "access_token": "AQW4H_TnVj9jgYr7U2WjTTq60R31xsjmSXvdJ_2QHF2h07rqfoa7Jm8fdlV8BHmpOE8cgBGH7e4F8eUcuQrsg_Jam11U4NOdlA7M5C5T6cAwlRJDZ-gGn-eRb97cfqEolZLymX8Mb3RV_DaPCm2NYXsOZUhRbz52cWFnNfdzcFWmo5KqJY8gXD4TwBbNSTu5KW3nRO9X7gQuDSTOvP-IaJFKzSqTxsCDZDrKmi4D9mwPGW1vo9ED4-6CCB9XFGq8Bvn4XOn03AjVY1SM61xP5G5K0aIxM4OnBWgHP3SSEiDpglmrm96mepYc8tuekIsERkaydSfGxTXgOyfKy7kP1HrpXzarBw",
- "access_token_expires_at": "2024-12-15T00:00:00.000Z",
- "created_at": "2023-01-28T17:16:22.011Z",
- "updated_at": "2024-01-30T19:14:11.011Z"
}
}
This operation creates a custom stream target for an external, third-party destination.
Provide the details of the custom stream target to create in the body of the request.
required | object (stream_target_custom) | ||||||||||||||||
|
Success
object (stream_target_custom) | |||||||||||||||||||||||||
|
Unauthorized
Unprocessable Entity
{- "stream_target_custom": {
- "name": "My Custom Stream Target",
- "primary_url": "rtmp://p.ep123456.i.akamaientrypoint.net/EntryPoint",
- "provider": "rtmp",
- "stream_name": "c8467d50@123456"
}
}
{- "stream_target_custom": {
- "created_at": "2020-01-28T17:16:22.011Z",
- "delivery_protocols": [
- "rtmp"
], - "id": "RMS45lfvx",
- "name": "My Custom Stream Target",
- "playback_urls": {
- "rtmp": [
- {
- "name": "default",
- "url": "rtmp://cp123456.live.edgefcs.net/live/[EVENT]@654321"
}
]
}, - "primary_url": "rtmp://p.ep123456.i.akamaientrypoint.net/EntryPoint",
- "provider": "rtmp",
- "stream_name": "c8467d50@123456",
- "updated_at": "2020-01-30T19:14:11.011Z"
}
}
This operation lists limited details for all of your custom stream targets. For detailed information, fetch a single custom stream target.
page | integer Returns a paginated view of results from the HTTP request. Specify a positive integer to indicate which page of the results should be displayed. The default is 1. For more information and examples, see Get paginated query results with the Wowza Video REST API. |
per_page | integer For use with the page parameter. Indicates how many records should be included in a page of results. A valid value is any positive integer. The default and maximum value is 1000. |
Success
required | Array of objects (stream_targets_custom) | ||||||||
Array
|
Unauthorized
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/stream_targets/custom"
{- "stream_targets_custom": [
- {
- "created_at": "2020-01-28T17:16:22.008Z",
- "id": "RMS45lfvx",
- "name": "My Custom Stream Target",
- "updated_at": "2020-01-31T00:44:50.008Z"
}, - {
- "created_at": "2020-01-28T17:16:22.008Z",
- "id": "ABC45lxyz",
- "name": "My Second Custom Stream Target",
- "updated_at": "2020-01-31T02:05:33.008Z"
}
]
}
This operation shows the details of a specific custom stream target.
Success
object (stream_target_custom) | |||||||||||||||||||||||||
|
Unauthorized
Forbidden
Not Found
Gone
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/stream_targets/custom/2adffc17"
{- "stream_target_custom": {
- "created_at": "2020-01-28T17:16:22.011Z",
- "delivery_protocols": [
- "rtmp"
], - "id": "RMS45lfvx",
- "name": "My Custom Stream Target",
- "playback_urls": {
- "rtmp": [
- {
- "name": "default",
- "url": "rtmp://cp123456.live.edgefcs.net/live/[EVENT]@654321"
}
]
}, - "primary_url": "rtmp://p.ep123456.i.akamaientrypoint.net/EntryPoint",
- "provider": "rtmp",
- "stream_name": "c8467d50@123456",
- "updated_at": "2020-01-30T19:14:11.011Z"
}
}
This operation updates a custom stream target.
Provide the details of the custom stream target to update in the body of the request.
required | object (stream_target_custom) | ||||||||||||||||
|
Success
object (stream_target_custom) | |||||||||||||||||||||||||
|
Unauthorized
Forbidden
Not Found
Gone
Unprocessable Entity
{- "stream_target_custom": {
- "name": "My Updated Custom Stream Target"
}
}
{- "stream_target_custom": {
- "created_at": "2020-01-28T17:16:22.011Z",
- "delivery_protocols": [
- "rtmp"
], - "id": "RMS45lfvx",
- "name": "My Updated Custom Stream Target",
- "playback_urls": {
- "rtmp": [
- {
- "name": "default",
- "url": "rtmp://cp123456.live.edgefcs.net/live/[EVENT]@654321"
}
]
}, - "primary_url": "rtmp://p.ep123456.i.akamaientrypoint.net/EntryPoint",
- "provider": "rtmp",
- "stream_name": "c8467d50@123456",
- "updated_at": "2020-01-30T19:46:22.012Z"
}
}
This operation deletes a custom stream target.
Note: You can't remove stream targets that have an asset_id. Assets must be removed by sending a DEL request to the /assets endpoint.
No Content
Unauthorized
Forbidden
Not Found
Gone
Unprocessable Entity
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "DELETE" \ "${WV_HOST}/api/v2.0/stream_targets/custom/2adffc17"
{- "Example Response 1": {
- "meta": {
- "status": 401,
- "code": "ERR-401-NoApiKey",
- "title": "No API Key Error",
- "message": "No API key sent in header.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 2": {
- "meta": {
- "status": 401,
- "code": "ERR-401-NoAccessKey",
- "title": "No Access Key Error",
- "message": "No access key sent in header.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 3": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidApiKey",
- "title": "Invalid Api Key Error",
- "message": "Invalid API key.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 4": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidAccessKey",
- "title": "Invalid Access Key Error",
- "message": "Invalid access key.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 5": {
- "meta": {
- "status": 401,
- "code": "ERR-401-BadAccountStatus",
- "title": "Bad Account Status Error",
- "message": "Your account's status doesn't allow this action.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 6": {
- "meta": {
- "status": 401,
- "code": "ERR-401-FeatureNotEnabled",
- "title": "Feature Not Enabled Error",
- "message": "This feature isn't enabled.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 7": {
- "meta": {
- "status": 401,
- "code": "ERR-401-TrialExceeded",
- "title": "Bad Billing Status Error",
- "message": "Your billing status needs attention. You can't start or add live streams until your billing status is updated.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 8": {
- "meta": {
- "status": 401,
- "code": "ERR-401-ExpiredToken",
- "title": "JWT is expired",
- "message": "Token has exired.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 9": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidToken",
- "title": "JWT is invalid",
- "message": "Token is invalid.",
- "description": "",
- "links": [ ]
}
}
}
(Available from version 1.4) This operation creates a Wowza CDN stream target to deliver your stream using the Wowza CDN.
Provide the details of the Wowza CDN stream target to create in the body of the request.
required | object (stream_target_wowza_cdn) | ||||||||||||||||||||||||||||||||||||||
|
Success
required | object (stream_target_wowza_cdn) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Unauthorized
Unprocessable Entity
{- "stream_target_wowza_cdn": {
- "name": "My Wowza CDN Stream Target"
}
}
{- "stream_target_wowza_cdn": {
- "id": "abc45lfyz",
- "name": "My Wowza CDN Stream Target",
- "state": "activated",
- "stream_name": "9a00105a",
- "delivery_protocols": [
- "hls"
], - "playback_urls": {
- "hls": [
- {
- "name": "default",
}
]
}, - "token_auth_enabled": false,
- "token_auth_playlist_only": false,
- "geoblock_enabled": true,
- "geoblock_by_location": "allow",
- "geoblock_country_codes": "DE, US",
- "geoblock_ip_override": "deny",
- "geoblock_ip_addresses": "77.12.34.567, 78.23.45.678",
- "referer_enabled": true,
- "referer_allow_empty": false,
- "referer_policy": "allow",
- "referer_domains": "example.com, example2.com",
- "force_ssl_playback": false,
- "created_at": "2020-01-28T17:16:22.086Z",
- "updated_at": "2020-01-30T15:33:43.086Z"
}
}
(Available from version 1.4) This operation lists limited details for all of your Wowza CDN stream targets. For detailed information, fetch a single target.
page | integer Returns a paginated view of results from the HTTP request. Specify a positive integer to indicate which page of the results should be displayed. The default is 1. For more information and examples, see Get paginated query results with the Wowza Video REST API. |
per_page | integer For use with the page parameter. Indicates how many records should be included in a page of results. A valid value is any positive integer. The default and maximum value is 1000. |
Success
required | Array of objects (stream_targets_wowza_cdn) | ||||||||
Array
|
Unauthorized
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/stream_targets/wowza_cdn"
{- "stream_targets_wowza_cdn": [
- {
- "created_at": "2020-01-28T17:16:22.010Z",
- "id": "abc45lfyz",
- "name": "My Wowza CDN Stream Target",
- "updated_at": "2020-01-31T12:37:22.010Z"
}, - {
- "created_at": "2020-01-28T17:16:22.010Z",
- "id": "rdm45lxyz",
- "name": "My Second Wowza CDN Stream Target",
- "updated_at": "2020-01-31T14:17:28.010Z"
}
]
}
(Available from version 1.4) This operation shows the details of a specific Wowza CDN stream target.
Success
required | object (stream_target_wowza_cdn) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Unauthorized
Forbidden
Not Found
Gone
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/stream_targets/wowza_cdn/2adffc17"
{- "stream_target_wowza_cdn": {
- "id": "abc45lfyz",
- "name": "My Wowza CDN Stream Target",
- "state": "activated",
- "stream_name": "9a00105a",
- "delivery_protocols": [
- "hls"
], - "playback_urls": {
- "hls": [
- {
- "name": "default",
}
]
}, - "token_auth_enabled": false,
- "token_auth_playlist_only": false,
- "geoblock_enabled": true,
- "geoblock_by_location": "allow",
- "geoblock_country_codes": "DE, US",
- "geoblock_ip_override": "deny",
- "geoblock_ip_addresses": "77.12.34.567, 78.23.45.678",
- "referer_enabled": true,
- "referer_allow_empty": false,
- "referer_policy": "allow",
- "referer_domains": "example.com, example2.com",
- "force_ssl_playback": false,
- "created_at": "2020-01-28T17:16:22.086Z",
- "updated_at": "2020-01-30T15:33:43.086Z"
}
}
(Available from version 1.4) This operation updates a Wowza CDN stream target.
Provide the details of the Wowza CDN stream target to update in the body of the request.
required | object (stream_target_wowza_cdn) | ||||||||||||||||||||||||||||||||||||||
|
Success
required | object (stream_target_wowza_cdn) | ||||||||||||||||||||||||||||||||||||||||||||||||
|
Unauthorized
Forbidden
Not Found
Gone
Unprocessable Entity
{- "stream_target_wowza_cdn": {
- "name": "My Updated Wowza CDN Stream Target"
}
}
{- "stream_target_wowza_cdn": {
- "id": "abc45lfyz",
- "name": "My Updated Wowza CDN Stream Target",
- "state": "activated",
- "stream_name": "9a00105a",
- "delivery_protocols": [
- "hls"
], - "playback_urls": {
- "hls": [
- {
- "name": "default",
}
]
}, - "token_auth_enabled": false,
- "token_auth_playlist_only": false,
- "geoblock_enabled": false,
- "referer_enabled": false,
- "force_ssl_playback": false,
- "created_at": "2020-01-28T17:16:22.086Z",
- "updated_at": "2020-01-30T18:13:55.087Z"
}
}
(Available from version 1.4) This operation deletes a Wowza CDN stream target.
Note: You can't remove stream targets that have an asset_id. Assets must be removed by sending a DEL request to the /assets endpoint.
No Content
Unauthorized
Forbidden
Not Found
Gone
Unprocessable Entity
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "DELETE" \ "${WV_HOST}/api/v2.0/stream_targets/wowza_cdn/2adffc17"
{- "Example Response 1": {
- "meta": {
- "status": 401,
- "code": "ERR-401-NoApiKey",
- "title": "No API Key Error",
- "message": "No API key sent in header.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 2": {
- "meta": {
- "status": 401,
- "code": "ERR-401-NoAccessKey",
- "title": "No Access Key Error",
- "message": "No access key sent in header.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 3": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidApiKey",
- "title": "Invalid Api Key Error",
- "message": "Invalid API key.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 4": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidAccessKey",
- "title": "Invalid Access Key Error",
- "message": "Invalid access key.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 5": {
- "meta": {
- "status": 401,
- "code": "ERR-401-BadAccountStatus",
- "title": "Bad Account Status Error",
- "message": "Your account's status doesn't allow this action.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 6": {
- "meta": {
- "status": 401,
- "code": "ERR-401-FeatureNotEnabled",
- "title": "Feature Not Enabled Error",
- "message": "This feature isn't enabled.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 7": {
- "meta": {
- "status": 401,
- "code": "ERR-401-TrialExceeded",
- "title": "Bad Billing Status Error",
- "message": "Your billing status needs attention. You can't start or add live streams until your billing status is updated.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 8": {
- "meta": {
- "status": 401,
- "code": "ERR-401-ExpiredToken",
- "title": "JWT is expired",
- "message": "Token has exired.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 9": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidToken",
- "title": "JWT is invalid",
- "message": "Token is invalid.",
- "description": "",
- "links": [ ]
}
}
}
This operation regenerates the connection code of any kind of stream target.
Success
required | object (stream_target) |
Unauthorized
Forbidden
Not Found
Gone
Unprocessable Entity
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "PUT" \ "${WV_HOST}/api/v2.0/stream_targets/2adffc17/regenerate_connection_code"
{- "stream_target": {
- "connection_code": "0cd2e8"
}
}
This operation configures a property for a stream target. The properties available will depend on the provider you are using and are noted in the key descriptions below. For example, if you are using the provider Wowza CDN on Fastly, look for that in the descriptions.
For a comprehensive resource describing the use of advanced properties, see Set advanced properties with the Wowza Video REST API.
Provide the details of the property or properties to configure in the body of the request. You must include either property or properties in the request as the root object.
required | object (property) A stream target property. The property configuration consists of a key/value pair and the section of the stream target configuration table the key/value pair is stored in. | ||||||||||||||||||||||||||||||||||||||||
|
Success
required | object (property) A stream target property. The property configuration consists of a key/value pair and the section of the stream target configuration table the key/value pair is stored in. | ||||||||||||||||||||||||||||||||||||||||
|
Unauthorized
Unprocessable Entity
{- "property": {
- "key": "chunkSize",
- "section": "hls",
- "value": 6
}
}
{- "property": {
- "key": "chunkSize",
- "section": "hls",
- "value": 6
}
}
This operation shows the details of all of the properties assigned to a specific stream target. The properties returned will depend on the provider you are using and are noted in the key descriptions below.
For a comprehensive resource describing the use of advanced properties, see Set advanced properties with the Wowza Video REST API.
Success
required | Array of objects (property) | ||||||||||||||||||||||||||||||||||||||||
Array
|
Unauthorized
Unprocessable Entity
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/stream_targets/2adffc17/properties"
{- "properties": [
- {
- "key": "chunkSize",
- "section": "hls",
- "value": 6
}, - {
- "key": "relativePlaylists",
- "section": "playlist",
- "value": true
}
]
}
This operation shows the details of a specific property assigned to a specific stream target. The properties returned will depend on the provider you are using and are noted in the key descriptions below.
For a comprehensive resource describing the use of advanced properties, see Set advanced properties with the Wowza Video REST API.
Success
required | object (property) A stream target property. The property configuration consists of a key/value pair and the section of the stream target configuration table the key/value pair is stored in. | ||||||||||||||||||||||||||||||||||||||||
|
Unauthorized
Forbidden
Not Found
Gone
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "GET" \ "${WV_HOST}/api/v2.0/stream_targets/2adffc17/properties/hls-chunkSize"
{- "property": {
- "key": "chunkSize",
- "section": "hls",
- "value": 6
}
}
This operation removes a property from a stream target.
No Content
Unauthorized
Forbidden
Not Found
Gone
Unprocessable Entity
// Using cURL curl -H "Authorization: Bearer ${WV_JWT}" \ -H "Content-Type: application/json" \ -X "DELETE" \ "${WV_HOST}/api/v2.0/stream_targets/2adffc17/properties/hls-chunkSize"
{- "Example Response 1": {
- "meta": {
- "status": 401,
- "code": "ERR-401-NoApiKey",
- "title": "No API Key Error",
- "message": "No API key sent in header.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 2": {
- "meta": {
- "status": 401,
- "code": "ERR-401-NoAccessKey",
- "title": "No Access Key Error",
- "message": "No access key sent in header.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 3": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidApiKey",
- "title": "Invalid Api Key Error",
- "message": "Invalid API key.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 4": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidAccessKey",
- "title": "Invalid Access Key Error",
- "message": "Invalid access key.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 5": {
- "meta": {
- "status": 401,
- "code": "ERR-401-BadAccountStatus",
- "title": "Bad Account Status Error",
- "message": "Your account's status doesn't allow this action.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 6": {
- "meta": {
- "status": 401,
- "code": "ERR-401-FeatureNotEnabled",
- "title": "Feature Not Enabled Error",
- "message": "This feature isn't enabled.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 7": {
- "meta": {
- "status": 401,
- "code": "ERR-401-TrialExceeded",
- "title": "Bad Billing Status Error",
- "message": "Your billing status needs attention. You can't start or add live streams until your billing status is updated.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 8": {
- "meta": {
- "status": 401,
- "code": "ERR-401-ExpiredToken",
- "title": "JWT is expired",
- "message": "Token has exired.",
- "description": "",
- "links": [ ]
}
}, - "Example Response 9": {
- "meta": {
- "status": 401,
- "code": "ERR-401-InvalidToken",
- "title": "JWT is invalid",
- "message": "Token is invalid.",
- "description": "",
- "links": [ ]
}
}
}