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
/- Adds the specified MediaCache Source to the list
Retrieves the server MediaCache configuration
Updates the server MediaCache configuration
Retrieves the list of MediaCache Sources
Retrieves the specified MediaCache Source configuration
Adds the specified MediaCache Source configuration
Updates the specified MediaCache Source configuration
Deletes the specified MediaCache Source configuration
Retrieves the specified advanced MediaCache Source configuration
Updates the specified advanced MediaCache Source configuration
Adds the specified advanced MediaCache Source configuration
Retrieves the list of MediaCache Stores
Adds the specified MediaCache Store to the list
Retrieves the specified MediaCache Store configuration
Adds the specified MediaCache Store configuration
Updates the specified MediaCache Store configuration
Deletes the specified MediaCache Store configuration
Adds the specified MediaC...
Wowza Streaming Engine REST API (2.0.0)
Download OpenAPI description
Overview
Languages
Servers
Wowza Streaming Engine Server
http://localhost:8089
Documentation Server
http://localhost:8087
- Wowza Streaming Engine Serverhttp://localhost:8089/v3/servers/{serverName}/mediacache/sources
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/mediacache/sources
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/mediacache/sources'Response
application/json
{ "sources": [ { … } ], "serverName": "string", "saveFieldList": [ "string" ], "version": "string" }
- Wowza Streaming Engine Serverhttp://localhost:8089/v3/servers/{serverName}/mediacache/sources
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/mediacache/sources
- curl
- Java
- Python
- JavaScript
curl -i -X POST \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/mediacache/sources' \
-H 'Content-Type: application/json' \
-d '{
"readerClass": "string",
"isPassThru": true,
"minTimeToLive": 0,
"prefix": "string",
"serverName": "string",
"description": "string",
"baseClass": "string",
"type": "string",
"isAmazonS3": true,
"s3BucketNameInDomain": true,
"googleServicePrivateKeyFile": "string",
"googleServiceID": "string",
"googleServicePrivateKeyPassword": "string",
"saveFieldList": [
"string"
],
"azureAccountKey": "string",
"awsSecretAccessKey": "string",
"azureAccountName": "string",
"awsAccessKeyId": "string",
"httpReaderFactoryClass": "string",
"googleServiceKey": "string",
"azureContainerName": "string",
"version": "string",
"basePath": "string",
"googleEncMethod": "string",
"name": "string",
"maxTimeToLive": 0
}'- Wowza Streaming Engine Serverhttp://localhost:8089/v3/servers/{serverName}/mediacache/sources/{sourceName}
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/mediacache/sources/{sourceName}'Response
application/json
{ "readerClass": "string", "isPassThru": true, "minTimeToLive": 0, "prefix": "string", "serverName": "string", "description": "string", "baseClass": "string", "type": "string", "isAmazonS3": true, "s3BucketNameInDomain": true, "googleServicePrivateKeyFile": "string", "googleServiceID": "string", "googleServicePrivateKeyPassword": "string", "saveFieldList": [ "string" ], "azureAccountKey": "string", "awsSecretAccessKey": "string", "azureAccountName": "string", "awsAccessKeyId": "string", "httpReaderFactoryClass": "string", "googleServiceKey": "string", "azureContainerName": "string", "version": "string", "basePath": "string", "googleEncMethod": "string", "sourceName": "string", "maxTimeToLive": 0 }