apiAiIndexOrgsOrgUsersUserIdPathwaysPathwayRetrieverDocumentsGet method

Future apiAiIndexOrgsOrgUsersUserIdPathwaysPathwayRetrieverDocumentsGet(
  1. String? org,
  2. String? pathway,
  3. String? userId
)

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);
}