createApiKeyWithHttpInfo method
Create an API Key
Note: This method returns the HTTP Response.
Parameters:
- CreateApiKeyRequest createApiKeyRequest (required):
Implementation
Future<http.Response> createApiKeyWithHttpInfo(
CreateApiKeyRequest createApiKeyRequest,
) async {
// ignore: prefer_const_declarations
final path = r'/api_keys';
// ignore: prefer_final_locals
Object? postBody = createApiKeyRequest;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}