Gets a Live Slicer's current slicing schedule.
Request syntax:
/api2/slicer/schedule/get
Pass the following request parameters:
Request Parameter | Type | Description |
---|---|---|
slicer_id Required | String | Identifies the desired Live Slicer by its ID. |
Sample request/response:
The Call() function, which is imported from uplynk_api2_auth module, prepares the message body and digital signature.
from uplynk_api2_auth import Call
print(Call('/api2/slicer/schedule/get', slicer_id='slicer123'))
{
"schedule": [{
"date": "2019-03-13",
"timecode": "11:22:33;04",
"break_type": "replace_pod",
"duration": 61.3
}
],
"error": 0
}