layerStatusGet method

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

layerStatusGet -> /v1/status/layers

Requests the status of all available layers.

RESPONSE 200:

The response was processed successfully.

content-type: application/json

schema:

{
  "type": "object",
  "required": [
    "video_input",
    "media",
    "slide",
    "announcements",
    "props",
    "messaages",
    "audio"
  ]
}

Implementation

Future<Map<String, dynamic>> layerStatusGet() async {
  String url = '/v1/status/layers';

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