v4
Retrieves a list of protocols that are supported by CSL slicers.
Request
Request syntax:
GET /managed-slicer/slicers/protocols
Authentication
Pass a digital signature based off of msg.
Response
The response for a successful request contains the following properties:
Name | Data Type | Description |
---|---|---|
@id | String | Indicates the relative path to this endpoint. |
@type | String | Returns ManagedSlicerProtocol. |
protocols | List of string values | Contains a list of the protocols supported by CSL slicers. |
Sample Request/Response
The code below (Python 3) shows how to retrieve a list of protocols.
This code imports names from the api_auth
module for V4 APIs (see below).
🦉
API Auth for Classic Authentication (V4 APIs)
Open Recipe
import requests
from api_auth import APICredentials, APIParams
class CSLSlicerProtocol:
def __init__(self):
self.host = "https://services.uplynk.com"
def run(self):
self._get_csl_slicer_protocols()
def _get_csl_slicer_protocols(self):
url = "{}{}".format(self.host, "/api/v4/managed-slicer/slicers/protocols")
headers = {'Content-Type': 'application/json'}
response = requests.get(
url, params=APIParams(APICredentials()).get_params({}), headers=headers
)
print(response.json())
CSLSlicerProtocol().run()
Response:
{
"@id": "/api/v4/managed-slicer/slicers/protocols",
"@type": "ManagedSlicerProtocol",
"protocols": ["RTMP", "RTP", "SRT", "RIST"]
}