getOrgsWithHttpInfo method
List all organizations
Note: This method returns the HTTP Response
.
Parameters:
Implementation
Future<Response> getOrgsWithHttpInfo({
String? zapTraceSpan,
int? offset,
int? limit,
bool? descending,
String? org,
String? orgID,
String? userID,
}) async {
final path = r'/orgs';
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
if (offset != null) {
queryParams
.addAll(_convertParametersForCollectionFormat('', 'offset', offset));
}
if (limit != null) {
queryParams
.addAll(_convertParametersForCollectionFormat('', 'limit', limit));
}
if (descending != null) {
queryParams.addAll(
_convertParametersForCollectionFormat('', 'descending', descending));
}
if (org != null) {
queryParams.addAll(_convertParametersForCollectionFormat('', 'org', org));
}
if (orgID != null) {
queryParams
.addAll(_convertParametersForCollectionFormat('', 'orgID', orgID));
}
if (userID != null) {
queryParams
.addAll(_convertParametersForCollectionFormat('', 'userID', userID));
}
if (zapTraceSpan != null) {
headerParams[r'Zap-Trace-Span'] = parameterToString(zapTraceSpan);
}
const authNames = <String>[
'BasicAuthentication',
'QuerystringAuthentication',
'TokenAuthentication'
];
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes[0],
authNames,
);
}