addCustomerToGroup method
Adds a group membership to a customer.
The customer is identified by the customer_id value and the customer group is identified by the group_id value.
Implementation
Future<bool> addCustomerToGroup({
required String customerId,
required String groupId,
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/$customerId/groups/$groupId");
//print (endpoint.toString());
var response = await
http.put(endpoint, headers: headers);
if (response.statusCode == 200) {
print (jsonDecode(response.body));
return true;
}
else {
print (response.body);
throw CustomerException(statusCode: response.statusCode, message: CustomerResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}