Getting Started
Red5 Pro Stream Manager REST API calls can be executed using any standard REST client.
For this section we will be using Google Chrome Add-On: Postman REST client.
You need to have the latest Chrome Browser installed on your computer to install the Add-On.
Given below are examples on using POST, GET and DELETE type REST operations using the Postman REST client. These are the three type of operations that you will come across while using the Stream Manager REST API.
Note: In examples, the URL pattern of {host} will refer to the Stream Manager IP/hostname and {port} will be 5080, the default port for Red5.
Making POST API Calls
To make a POST REST call using the Postman REST client:
- Enter your URL in the URL text field
- Select
POSTfrom methods list on the left-hand side of URL text field - If you have any accompanying data:
- Select Body tab and select
rawoption - Select
JSON(application/json) in the drop down selector next to therawoption - Paste the desired JSON data into the text area exposed on selecting
raw
- Select Body tab and select
- Click Send to execute your API call

Making GET API Calls
To make a GET REST call using the Postman REST client:
- Enter your URL in the URL text field
- Select
GETfrom methods list on the left-hand side of URL text field - Click Send to execute your API call

Making DELETE API Calls
To make a DELETE REST call using the Postman REST client:
- Enter your URL in the URL text field
- Select
DELETEfrom methods list on the left-hand side of URL text field - Click Send to execute your api call
