patchOrgsIDWithHttpInfo method
Future<Response>
patchOrgsIDWithHttpInfo(
- String orgID,
- PatchOrganizationRequest patchOrganizationRequest, {
- String? zapTraceSpan,
Update an organization
Note: This method returns the HTTP Response
.
Parameters:
-
String orgID (required): The ID of the organization to get.
-
PatchOrganizationRequest patchOrganizationRequest (required): Organization update to apply
-
String zapTraceSpan: OpenTracing span context
Implementation
Future<Response> patchOrgsIDWithHttpInfo(
String orgID,
PatchOrganizationRequest patchOrganizationRequest, {
String? zapTraceSpan,
}) async {
final path = r'/orgs/{orgID}'.replaceAll('{orgID}', orgID);
// ignore: prefer_final_locals
Object? postBody = patchOrganizationRequest;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
if (zapTraceSpan != null) {
headerParams[r'Zap-Trace-Span'] = parameterToString(zapTraceSpan);
}
const authNames = <String>[
'BasicAuthentication',
'QuerystringAuthentication',
'TokenAuthentication'
];
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'PATCH',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes[0],
authNames,
);
}