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 source config V3
Get media cache server config V3
Update media cache server config V3
Get media cache source list V3
Update media cache source list V3
Get media cache source config V3
Create media cache source config V3
Delete media cache source config V3
Get media cache source config (adv) V3
Update media cache source config (adv) V3
Create media cache source config (adv) V3
Get media cache store list V3
Update media cache store list V3
Get media cache store config V3
Create media cache store config V3
Update media cache store config V3
Delete media cache store config V3
Update 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
Adds the specified 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}
- curl
- Java
- Python
- JavaScript
curl -i -X POST \
-u <username>:<password> \
'http://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}' \
-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",
"sourceName": "string",
"maxTimeToLive": 0
}'Request
Updates the specified 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}
- curl
- Java
- Python
- JavaScript
curl -i -X PUT \
-u <username>:<password> \
'http://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}' \
-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",
"sourceName": "string",
"maxTimeToLive": 0
}'- Wowza Streaming Engine Serverhttp://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}
- curl
- Java
- Python
- JavaScript
curl -i -X DELETE \
-u <username>:<password> \
'http://localhost:8087/v3/servers/{serverName}/mediacache/sources/{sourceName}'