GET | http://127.0.0.1/api/rest/v1/lino/engines/:engineId? | Get all rundown engines or a single rundown engine by id |
GET | http://127.0.0.1/api/rest/v1/lino/rundowns | Get all rundowns |
GET | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId | Get loaded rundown info of a specific rundown engine |
DELETE | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId | Delete loaded rundown |
GET | http://127.0.0.1/api/rest/v1/lino//rundown/:engineId/items/:itemId? | Get all items of a rundown or a single item by id |
POST | http://127.0.0.1/api/rest/v1/lino//rundown/:engineId/items | Add a new item to the loaded rundown |
PATCH | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/items/:itemId | Update an item of the loaded rundown |
DELETE | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/items/:itemId | Delete an item of the loaded rundown |
GET | http://127.0.0.1/api/rest/v1/lino//rundown/:engineId/items/:itemId/buttons | Get the buttons of an item (if "Show in Rundown" option is not selected they will not be listed) |
POST | http://127.0.0.1/api/rest/v1/lino//rundown/:engineId/items/:itemId/buttons/:buttonKey | Trigger a rundown item button |
POST | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/:rundownId/load | Load a rundown |
POST | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/:rundownId/append | Append a rundown |
POST | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/unload | Unload a rundown |
POST | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/play/:itemId/:preview? | Play an item. If :preview is 1, then the item will be played on the preview channel. If :preview is omitted (or 0 ) the item will be played on the program channel. |
POST | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/playnext/:itemId/:preview? | Play the next item. If :preview is 1, then the item will be played on the preview channel. If :preview is omitted (or 0 ) the item will be played on the program channel. |
POST | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/continue/:itemId/:preview? | Continue playing the item. If :preview is 1, then the item will be played on the preview channel. If :preview is omitted (or 0 ) the item will be played on the program channel. |
POST | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/out/:itemId/:preview? | Take out an item. If :preview is 1, then the item will be taken out on the preview channel. If :preview is omitted (or 0 ) the item will be taken out on the program channel. |
POST | http://127.0.0.1/api/rest/v1/lino/rundown/:engineId/clear/:preview? | Clear the output. If :preview is 1, then the preview channel will be cleared. If :preview is omitted (or is 0 ) then the program channel will be cleared. |