updateOrganizationWithHttpInfo method
Updates organization info
Updates the organization info
Note: This method returns the HTTP Response.
Parameters:
- Organization organization (required): Organization data
Implementation
Future<Response> updateOrganizationWithHttpInfo(
Organization organization,
) async {
// ignore: prefer_const_declarations
final path = r'/lbcoreapi/org';
// ignore: prefer_final_locals
Object? postBody = organization;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'PUT',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}