Skip to content

Wowza Streaming Engine REST API (2.0.0)

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.

Download OpenAPI description
Languages
Servers
Wowza Streaming Engine Server
http://localhost:8089
Documentation Server
http://localhost:8087

Application Operations

Operations

Machine Level Current Statistics

Operations

Machine Level Historic Statistics

Operations

Server Licenses

Operations

Server Listeners

Operations

Server log4j system

Operations

Server MediaCache

Operations

Server MediaCache Version 3

Operations

Server MediaCasters

Operations

Server Monitoring

Operations

Server Publishers

Operations

Server Publishers Version 3

Operations

REST information

Operations

Servers Configuration

Operations

Server Status

Operations

Server Transcoder

Operations

Server Tuning

Operations

Server Users

Operations

VHost Operations

Operations

Retrieves the Transcoder configuration for the specified VHost

Request

This API is available in builds 15089 or later.

Security
basicAuth
Path
serverNamestringrequired

Reserved for future use

Default "_defaultServer_"
vhostNamestringrequired
Default "_defaultVHost_"
curl -i -X GET \
  -u <username>:<password> \
  'http://localhost:8089/v2/servers/{serverName}/vhosts/{vhostName}/transcoder'

Responses

Successful response

Bodyapplication/json
licensesinteger(int32)required
licensedbooleanrequired
licensesInUseinteger(int32)required
availablebooleanrequired
serverNamestringrequired
saveFieldListArray of strings
versionstringrequired
Response
application/json
{ "licenses": 0, "licensed": true, "licensesInUse": 0, "available": true, "serverName": "string", "saveFieldList": [ "string" ], "version": "string" }

Updates the Transcoder configuration for the specified VHost

Request

This API is available in builds 15089 or later.

Security
basicAuth
Path
serverNamestringrequired

Reserved for future use

Default "_defaultServer_"
vhostNamestringrequired
Default "_defaultVHost_"
Bodyapplication/jsonrequired
licensesinteger(int32)required
licensedbooleanrequired
licensesInUseinteger(int32)required
availablebooleanrequired
serverNamestringrequired
saveFieldListArray of strings
versionstringrequired
curl -i -X PUT \
  -u <username>:<password> \
  'http://localhost:8089/v2/servers/{serverName}/vhosts/{vhostName}/transcoder' \
  -H 'Content-Type: application/json' \
  -d '{
    "licenses": 0,
    "licensed": true,
    "licensesInUse": 0,
    "available": true,
    "serverName": "string",
    "saveFieldList": [
      "string"
    ],
    "version": "string"
  }'

Responses

Successful response

Retrieves the list of Transcoder Template Configurations for the specified VHost

Request

This API is available in builds 15089 or later.

Security
basicAuth
Path
serverNamestringrequired

Reserved for future use

Default "_defaultServer_"
vhostNamestringrequired

The name of the current VHost the action will be performed on

Default "_defaultVHost_"
curl -i -X GET \
  -u <username>:<password> \
  'http://localhost:8089/v2/servers/{serverName}/vhosts/{vhostName}/transcoder/templates'

Responses

Successful response

Bodyapplication/json
vhostNamestringrequired
templatesArray of objects(ShortObject)required
templates[].​idstringrequired
templates[].​hrefstringrequired
serverNamestringrequired
saveFieldListArray of strings
versionstringrequired
Response
application/json
{ "vhostName": "string", "templates": [ {} ], "serverName": "string", "saveFieldList": [ "string" ], "version": "string" }

Full Webhooks configuration

Operations