Complete REST API for Wowza Streaming Engine. Auto-converted from Swagger 1.2 (http://localhost:8089/swagger.json) to OpenAPI 3.0.3 for public documentation.
Wowza Streaming Engine
/REST API Reference
/- Create media cache source (adv) V3
Get media cache server V3
Update media cache server V3
Get media cache source list V3
Update media cache source list V3
Get media cache source V3
Create media cache source V3
Update media cache source V3
Delete media cache source V3
Get media cache source (adv) V3
Update media cache source (adv) V3
Get media cache store list V3
Update media cache store list V3
Get media cache store V3
Create media cache store V3
Update media cache store V3
Delete media cache store V3
Create media cache source...
Wowza Streaming Engine REST API (2.0.0)
Download OpenAPI description
Overview
Languages
Servers
Wowza Streaming Engine Server
http://localhost:8087
Request
Updates the specified advanced MediaCache Source configuration. This API is available in builds 15089 or later.
Security
basicAuth
- Wowza Streaming Engine Serverhttp://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}/adv
- curl
- Java
- Python
- JavaScript
curl -i -X PUT \
-u <username>:<password> \
'http://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}/adv' \
-H 'Content-Type: application/json' \
-d '{
"advancedSettings": [
{
"sectionName": "string",
"canRemove": true,
"defaultValue": "string",
"documented": true,
"name": "string",
"section": "string",
"type": "string",
"value": "string",
"initialValue": "string",
"enabled": true
}
],
"serverName": "string",
"saveFieldList": [
"string"
],
"version": "string"
}'Request
Adds the specified advanced MediaCache Source configuration. This API is available in builds 15089 or later.
Security
basicAuth
- Wowza Streaming Engine Serverhttp://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}/adv
- curl
- Java
- Python
- JavaScript
curl -i -X POST \
-u <username>:<password> \
'http://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}/adv' \
-H 'Content-Type: application/json' \
-d '{
"advancedSettings": [
{
"sectionName": "string",
"canRemove": true,
"defaultValue": "string",
"documented": true,
"name": "string",
"section": "string",
"type": "string",
"value": "string",
"initialValue": "string",
"enabled": true
}
],
"serverName": "string",
"saveFieldList": [
"string"
],
"version": "string"
}'Security
basicAuth
- Wowza Streaming Engine Serverhttp://localhost:8087/v3/servers/{serverName}/mediacache/stores
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
-u <username>:<password> \
'http://localhost:8087/v3/servers/{serverName}/mediacache/stores'Response
application/json
{ "stores": [ { … } ], "serverName": "string", "saveFieldList": [ "string" ], "version": "string" }