associateProfilesToDevices method
Future<MdmEmpty>
associateProfilesToDevices(
- String apiKey, {
- required String deviceId,
- required AssociateProfilesToDeviceRequestDto associateProfilesToDeviceRequestDto,
Implementation
Future<MdmEmpty> associateProfilesToDevices(
String apiKey, {
required String deviceId,
required AssociateProfilesToDeviceRequestDto
associateProfilesToDeviceRequestDto,
}) async {
final String url = '$channel/api/v1/mdm/devices/$deviceId/profiles';
// need to remove null values from the request
final requestDto = associateProfilesToDeviceRequestDto.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();
}