updateCustomerGroup method

Future<CustomerGroup> updateCustomerGroup({
  1. required String groupId,
  2. required CustomerGroup group,
  3. String? authToken,
})

Updates a customer group as identified by the group_id value.

Implementation

Future<CustomerGroup> updateCustomerGroup({
  required String groupId,
  required CustomerGroup group,
  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/$groupId");

  //print (endpoint.toString());

  var response = await
  http.put(endpoint,body: jsonEncode(group.toJson()), headers: headers);

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