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 config (adv)
Get media cache config
Update media cache config
Get media cache config (adv)
Update media cache config (adv)
Get media cache source list
Update media cache source list
Get media cache source config
Create media cache source config
Update media cache source config
Delete media cache source config
Get media cache source config (adv)
Update media cache source config (adv)
Create media cache source config (adv)
Get media cache store list
Update media cache store list
Get media cache store config
Create media cache store config
Update media cache store config
Delete media cache store config
Get media cache store config (adv)
Update media cache store config (adv)
Create media cache store config (adv)
Create media cache config...
Wowza Streaming Engine REST API (2.0.0)
Download OpenAPI description
Overview
Languages
Servers
Wowza Streaming Engine Server
http://localhost:8087
Request
Updates the advanced MediaCache configuration. This API is available in builds 15089 or later.
Security
basicAuth
- Wowza Streaming Engine Serverhttp://localhost:8087/v2/servers/{serverName}/mediacache/adv
- curl
- Java
- Python
- JavaScript
curl -i -X PUT \
-u <username>:<password> \
'http://localhost:8087/v2/servers/{serverName}/mediacache/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"
}'- Wowza Streaming Engine Serverhttp://localhost:8087/v2/servers/{serverName}/mediacache/adv
- curl
- Java
- Python
- JavaScript
curl -i -X POST \
-u <username>:<password> \
'http://localhost:8087/v2/servers/{serverName}/mediacache/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/v2/servers/{serverName}/mediacache/sources
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
-u <username>:<password> \
'http://localhost:8087/v2/servers/{serverName}/mediacache/sources'Response
application/json
{ "sources": [ { … } ], "serverName": "string", "saveFieldList": [ "string" ], "version": "string" }