stageScreensGet method

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

stageScreensGet -> /v1/stage/screens

Requests a list of the configured stage screens.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "array",
  "required": [],
  "example": [
    {
      "id": {
        "name": "Stage Left",
        "index": 0,
        "uuid": "BB6E8C3A-8182-4818-8D57-38B1D85333A9"
      }
    },
    {
      "id": {
        "name": "Stage Right",
        "index": 1,
        "uuid": "D2BAE32A-CDE2-4166-BA5C-2276D51EEFB8"
      }
    }
  ]
}

Implementation

Future<Map<String, dynamic>> stageScreensGet() async {
  String url = '/v1/stage/screens';

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