getApiKeysByIdApiKeysStatsWithHttpInfo method
Get usage statistics for a specific API key. Returns usage count, last used date, failed attempts, etc.
Note: This method returns the HTTP Response.
Parameters:
Implementation
Future<Response> getApiKeysByIdApiKeysStatsWithHttpInfo(String companyId, String apiKeyId,) async {
// ignore: prefer_const_declarations
final path = r'/companies/{company_id}/api-keys/{api_key_id}/stats'
.replaceAll('{company_id}', companyId)
.replaceAll('{api_key_id}', apiKeyId);
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}