lookDelete method

Future<bool> lookDelete(
  1. String id
)
inherited

lookDelete -> /v1/look/{id}

Deletes the specified audience look from the saved looks. NOTE: The currently live look may not be deleted.

PARAMETERS

id (required) : The ID of the audience look, either UUID, name, or index.

  • Example (by_uuid): 3C39C433-5C18-4F51-B357-55BB870227C4
  • Example (by_name): Look
  • Example (by_index): 3

RESPONSE 204:

The request was processed successfully. There is no response body.

content-type: NONE

Implementation

Future<bool> lookDelete(String id) async {
  String url = '/v1/look/$id';

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