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 a new Publisher to t...
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}/publishers
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/publishers
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/publishers'Response
application/json
{ "serverName": "string", "publishers": [ { … } ], "saveFieldList": [ "string" ], "version": "string" }
- Wowza Streaming Engine Serverhttp://localhost:8089/v3/servers/{serverName}/publishers
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/publishers
- curl
- Java
- Python
- JavaScript
curl -i -X POST \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/publishers' \
-H 'Content-Type: application/json' \
-d '{
"password": "string",
"name": "string",
"serverName": "string",
"description": "string",
"saveFieldList": [
"string"
],
"version": "string"
}'- Wowza Streaming Engine Serverhttp://localhost:8089/v3/servers/{serverName}/publishers/{publisher}
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/publishers/{publisher}
- curl
- Java
- Python
- JavaScript
curl -i -X PUT \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/publishers/{publisher}' \
-H 'Content-Type: application/json' \
-d '{
"password": "string",
"serverName": "string",
"publisher": "string",
"description": "string",
"saveFieldList": [
"string"
],
"version": "string"
}'- Wowza Streaming Engine Serverhttp://localhost:8089/v3/servers/{serverName}/publishers/{publisher}
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/publishers/{publisher}
- curl
- Java
- Python
- JavaScript
curl -i -X GET \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/publishers/{publisher}'Response
application/json
{ "password": "string", "serverName": "string", "publisher": "string", "description": "string", "saveFieldList": [ "string" ], "version": "string" }
- Wowza Streaming Engine Serverhttp://localhost:8089/v3/servers/{serverName}/publishers/{publisher}
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/publishers/{publisher}
- curl
- Java
- Python
- JavaScript
curl -i -X POST \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/publishers/{publisher}' \
-H 'Content-Type: application/json' \
-d '{
"password": "string",
"serverName": "string",
"publisher": "string",
"description": "string",
"saveFieldList": [
"string"
],
"version": "string"
}'- Wowza Streaming Engine Serverhttp://localhost:8089/v3/servers/{serverName}/publishers/{publisher}
- Documentation Serverhttp://localhost:8087/v3/servers/{serverName}/publishers/{publisher}
- curl
- Java
- Python
- JavaScript
curl -i -X DELETE \
-u <username>:<password> \
'http://localhost:8089/v3/servers/{serverName}/publishers/{publisher}'