readCustomerSegments method

Future<CustomerSegment> readCustomerSegments({
  1. required String segmentId,
  2. String? authToken,
})

Retrieves a specific customer segment as identified by the segment_id value.

Implementation

Future<CustomerSegment> readCustomerSegments({
  required String segmentId,
  String? authToken,
}) async {

  authToken ??= authenticationService.getCachedToken()?.accessToken;

  Map<String, String> headers = {
    "Authorization": "Bearer ${authToken ?? ""}",
    'Content-Type': 'application/json; charset=UTF-8',
    'Accept': 'application/json',
  };

  Uri endpoint = Uri.https(
      baseUrl, "/v2/customers/segments/$segmentId");

  //print (endpoint.toString());

  var response = await
  http.get(endpoint, headers: headers);

  if (response.statusCode == 200) {
    print (jsonDecode(response.body));
    return CustomerSegmentResponse.fromJson(jsonDecode(response.body)).segment!;
  }
  else {
    print (response.body);
    throw CustomerException(statusCode: response.statusCode, message: CustomerSegmentResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
  }
}