lookGetAll method

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

lookGetAll -> /v1/looks

Requests a list of all configured audience looks, except the live look. The current / live look is NOT included. The current look can be retrieved by GET /v1/look/current. While the current look may have the same attributes as one of the looks returned by this endpoint, the current look will have a unique UUID which is not returned by this endpoint.

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

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

Implementation

Future<Map<String, dynamic>> lookGetAll() async {
  String url = '/v1/looks';

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