videoInputsGet method

Future<Map<String, dynamic>> videoInputsGet()
inherited

videoInputsGet -> /v1/video_inputs

Requests a list of the configured and triggerable video inputs. Triggerable video inputs come from the Video Inputs playlist in the Media Bin. Once the video input is added there it can be triggered with GET /v1/trigger/video_input/{id}

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "array",
  "required": []
}

Implementation

Future<Map<String, dynamic>> videoInputsGet() async {
  String url = '/v1/videoInputs';

  return await call('get', url, httpAccept: 'application/json');
}