associateProfilesToGroup method
Future<MdmEmpty>
associateProfilesToGroup(
- String apiKey, {
- required String groupId,
- required AssociateProfilesToGroupRequestDto associateProfilesToGroupRequestDto,
Implementation
Future<MdmEmpty> associateProfilesToGroup(
String apiKey, {
required String groupId,
required AssociateProfilesToGroupRequestDto
associateProfilesToGroupRequestDto,
}) async {
final String url = '$channel/api/v1/mdm/groups/$groupId/profiles';
final requestDto = associateProfilesToGroupRequestDto.toJson();
requestDto.removeWhere((key, value) => value == null);
final response = await http.post(
Uri.parse(url),
headers: {
'Authorization': 'Zoho-oauthtoken $apiKey',
'Content-Type': 'application/json;charset=UTF-8',
},
body: requestDto.isEmpty ? null : jsonEncode(requestDto),
);
if (!response.statusCode.isSuccessful) {
throw MdmEngineException(
method: response.request?.method,
url: url,
statusCode: response.statusCode,
error: response.body,
);
}
return MdmEmpty();
}