listCustomerGroup method
Future<CustomerGroupResponse>
listCustomerGroup({
- required SearchRequest request,
- String? authToken,
Retrieves the list of customer groups of a business.
Implementation
Future<CustomerGroupResponse> listCustomerGroup({
required SearchRequest request,
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/groups", request.toJson().toQueryParam());
//print (endpoint.toString());
var response = await
http.get(endpoint, headers: headers);
if (response.statusCode == 200) {
print (jsonDecode(response.body));
return CustomerGroupResponse.fromJson(jsonDecode(response.body));
}
else {
print (response.body);
throw CustomerException(statusCode: response.statusCode, message: CustomerGroupResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}