getComplianceProfile method

Future<GetComplianceProfileResponseDto> getComplianceProfile(
  1. String apiKey
)

Implementation

Future<GetComplianceProfileResponseDto> getComplianceProfile(
  String apiKey,
) async {
  final String url = '$channel/api/v1/mdm/compliance';

  final response = await http.get(
    Uri.parse(url),
    headers: {
      'Authorization': 'Zoho-oauthtoken $apiKey',
      'Content-Type': 'application/json;charset=UTF-8',
    },
  );

  if (!response.statusCode.isSuccessful) {
    throw MdmEngineException(
      method: response.request?.method,
      url: url,
      statusCode: response.statusCode,
      error: response.body,
    );
  }

  return GetComplianceProfileResponseDto.fromJson(
    jsonDecode(response.body) as Map<String, dynamic>,
  );
}