captureStatusGet method

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

captureStatusGet -> /v1/capture/status

Requests the current capture status and capture time.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "object",
  "required": [
    "status",
    "status_description"
  ]
}

Implementation

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

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