createGroupWithHttpInfo method
Create Group
Note: This method returns the HTTP Response.
Parameters:
- GroupCreate groupCreate (required):
Implementation
Future<Response> createGroupWithHttpInfo(
GroupCreate groupCreate,
) async {
// ignore: prefer_const_declarations
final path = r'/groups';
// ignore: prefer_final_locals
Object? postBody = groupCreate.toJson();
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,
);
}