aiIndexOrgsUsersTasksRetrieveWithHttpInfo method
Check document status of training
Note: This method returns the HTTP Response.
Parameters:
Implementation
Future<Response> aiIndexOrgsUsersTasksRetrieveWithHttpInfo(String org, String taskId, String userId,) async {
// ignore: prefer_const_declarations
final path = r'/api/ai/index/orgs/{org}/users/{user_id}/tasks/{task_id}/'
.replaceAll('{org}', org)
.replaceAll('{task_id}', taskId)
.replaceAll('{user_id}', userId);
// 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,
);
}