Description
The server resource shows ports chosen for Real-Time Messaging Protocol (RTMP) and Real-Time Streaming Protocol (RTSP) livestreams.
Request parameters
| Parameter | Details |
|---|---|
(Required) | The response format. The default response format is Values: |
(Required) | Users interacting programmatically with this endpoint must generate a token that must be included as a request parameter. A token can be obtained using the Generate Token operation. |
Example usage
The following is a sample request URL used to access the server resource:
https://organization.example.com/<context>/admin/system/livestream/serverPorts?f=pjsonJSON Response syntax
{
"rangeMax": <port>,
"rtspPort": <port>,
"rangeMin": <port>,
"rtmpPort": <port>
}JSON Response example
{
"rangeMax": 65535,
"rtspPort": 554,
"rangeMin": 49152,
"rtmpPort": 1935
}