apiAiIndexOrgsOrgUsersUserIdDocumentsDocumentIdRetrieverDocumentsGet method
Future
apiAiIndexOrgsOrgUsersUserIdDocumentsDocumentIdRetrieverDocumentsGet(
- String? documentId,
- String? org,
- String? userId
)
Implementation
Future<dynamic> apiAiIndexOrgsOrgUsersUserIdDocumentsDocumentIdRetrieverDocumentsGet(String? documentId, String? org, String? userId) async {
final response = await http.get(
Uri.parse('$dataBaseUrl/api/ai/index/orgs/$org/users/$userId/documents/$documentId/retriever_documents/'),
);
return json.decode(response.body);
}