Load Show from JSON File
curl -X POST -H "Content-Type: application/json" "http://localhost:3019/v0/show" --data @JsonFileName
Load Show from .watch File
curl -X POST "http://localhost:3019/v0/showfile" --data-binary @ShowFileName
Load Show with Name
curl -X POST "http://localhost:3019/v0/showfile?showName=TestShow" -H "Content-Type: application/octet-stream" --data-binary "@showfile.watch"
By Group ID
curl -X POST http://localhost:3019/v0/cue-group-state/by-id
-H "Content-Type: application/json"
-d '{ "groupId1": "variantId1", "groupId2": "variantId2" }'
By Group Name
curl -X POST http://localhost:3019/v0/cue-group-state/by-name
-H "Content-Type: application/json"
-d '{ "groupName1": "variantName1", "groupName2": "variantName2" }'