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
/- Update media cache store list
Get media cache
Update media cache
Get media cache (adv)
Update media cache (adv)
Create media cache (adv)
Get media cache source list
Update media cache source list
Get media cache source
Create media cache source
Update media cache source
Delete media cache source
Get media cache source (adv)
Update media cache source (adv)
Create media cache source (adv)
Get media cache store list
Get media cache store
Create media cache store
Update media cache store
Delete media cache store
Get media cache store (adv)
Update media cache store (adv)
Create media cache store (adv)
Update media cache store...
Wowza Streaming Engine REST API (2.0.0)
Download OpenAPI description
Overview
Languages
Servers
Wowza Streaming Engine Server
http://localhost:8087
Security
basicAuth
- Wowza Streaming Engine Serverhttp://localhost:8087/v2/servers/{serverName}/mediacache/stores
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
-u <username>:<password> \
'http://localhost:8087/v2/servers/{serverName}/mediacache/stores'Response
application/json
{ "stores": [ { … } ], "serverName": "string", "saveFieldList": [ "string" ], "version": "string" }
Request
Adds the specified MediaCache Store to the list. This API is available in builds 15089 or later.
Security
basicAuth
- Wowza Streaming Engine Serverhttp://localhost:8087/v2/servers/{serverName}/mediacache/stores
- curl
- Java
- Python
- JavaScript
curl -i -X POST \
-u <username>:<password> \
'http://localhost:8087/v2/servers/{serverName}/mediacache/stores' \
-H 'Content-Type: application/json' \
-d '{
"path": "string",
"writeRate": "string",
"name": "string",
"serverName": "string",
"description": "string",
"maxSize": "string",
"writeRateMaxBucketSize": "string",
"saveFieldList": [
"string"
],
"version": "string"
}'- Wowza Streaming Engine Serverhttp://localhost:8087/v2/servers/{serverName}/mediacache/stores/{storeName}
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
-u <username>:<password> \
'http://localhost:8087/v2/servers/{serverName}/mediacache/stores/{storeName}'Response
application/json
{ "path": "string", "writeRate": "string", "name": "string", "serverName": "string", "description": "string", "maxSize": "string", "writeRateMaxBucketSize": "string", "saveFieldList": [ "string" ], "version": "string" }