aiAccountOrgsIntegrationCredentialRetrieveWithHttpInfo method
API View to manage Integration credentials. Sample for value field : {\"key\": \"sk-31343432432434324324324324\"}
Note: This method returns the HTTP Response.
Parameters:
- String org (required):
Implementation
Future<Response> aiAccountOrgsIntegrationCredentialRetrieveWithHttpInfo(String org,) async {
// ignore: prefer_const_declarations
final path = r'/api/ai/account/orgs/{org}/integration-credential/'
.replaceAll('{org}', org);
// ignore: prefer_final_locals
Object? postBody;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>[];
return apiClient.invokeAPI(
path,
'GET',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}