createAppChannel method
Future<CreateAppChannelResponseDto>
createAppChannel(
- String apiKey, {
- required CreateAppChannelRequestDto createAppChannelRequestDto,
Implementation
Future<CreateAppChannelResponseDto> createAppChannel(
String apiKey, {
required CreateAppChannelRequestDto createAppChannelRequestDto,
}) async {
final String url = '$channel/api/v1/mdm/labels';
final requestDto = createAppChannelRequestDto.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 CreateAppChannelResponseDto.fromJson(
jsonDecode(
response.body,
),
);
}