getAuditsWithHttpInfo method
Get audits
Get a page of audits for all users on the system, selected with page
and per_page
query parameters. ##### Permissions Must have manage_system
permission.
Note: This method returns the HTTP Response
.
Parameters:
Implementation
Future<Response> getAuditsWithHttpInfo({
int? page,
int? perPage,
}) async {
// ignore: prefer_const_declarations
final path = r'/audits';
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <MmQueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
if (page != null) {
queryParams.addAll(_queryParams('', 'page', page));
}
if (perPage != null) {
queryParams.addAll(_queryParams('', 'per_page', perPage));
}
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}