captureSettingsGet method

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

captureSettingsGet -> /v1/capture/settings

Requests the current capture settings.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "object",
  "required": [
    "source",
    "audio_routing"
  ]
}

Implementation

Future<Map<String, dynamic>> captureSettingsGet() async {
  String url = '/v1/capture/settings';

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