change the IP to the specific unit IP in use. The following example retrieves one specific parameter value
from the ASI tuning settings for ASI port 1.
The user must specify the port number in the URI followed by the URI argument the user wishes to retrieve.
This example retrieves the bitrate from transcoder 5.
Note
In GET URIs, only the index argument must contain a value for the transcoder, all other arguments do
not contain values.
Note
curl -X GET -i -H "Accept: application/json" -H "X-SESSION-ID: $token" -k
"https://192.168.0.1/ws/v2/service_cfg/transcode/sd?index=5&bitrate"
If successful, the following is an example of the return body:
"transcode": {
"sd": {
"index": "5",
"bitrate": "14.0"
}
}
Example 5: GET multiple SD transcoder values for a specific transcoder
The following example assumes that the user has successfully logged onto the unit, received the session id
and set it to the variable token. In addition, it is assumed that the IP of the unit is 192.168.0.1. You must
change the IP to the specific unit IP in use. The following example retrieves multiple parameter values from
the HD transcoder settings for transcoder 5.
The user must specify the index number in the URI followed by the URI arguments the user wishes to
retrieve. The following example retrieves the bitratemode, bitrate and pulldown32 values from transcoder
5.
Note
In GET URIs, only the index argument must contain a value for the transcoder, all other arguments do
not contain values.
Note
curl -X GET -i
-H "Accept: application/json" -H "X-SESSION-ID: $token" -k
"https://192.168.0.1/ws/v2/service_cfg/transcode/sd?index=5&bitratemode&bitrate&pulldown32"
If successful, the following is an example of the return body:
"transcode": {
"sd": {
"index": "5",
"bitrate": "14.0",
"bitratemode": "CBR",
"pulldown32": "Disabled"
}
}
Cisco D9800 Network Transport Receiver Version 2.75 RESTful Web Services API Reference Guide
252
API Definitions
Transcoding Configuration Commands