audioPlaylistsGet method

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

audioPlaylistsGet -> /v1/audio/playlists

Requests a list with all the configured audio playlists.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

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

Implementation

Future<Map<String, dynamic>> audioPlaylistsGet() async {
  String url = '/v1/audio/playlists';

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