projectsCreateWithHttpInfo method
Add a new project. Change details later via PUT or PATCH.
Note: This method returns the HTTP Response
.
Parameters:
- ProjectCreate projectCreate (required):
Implementation
Future<Response> projectsCreateWithHttpInfo(
ProjectCreate projectCreate,
) async {
// ignore: prefer_const_declarations
final path = r'/api/projects/';
// ignore: prefer_final_locals
Object? postBody = projectCreate;
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,
);
}