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