List Directories
GET/api/v1/beta/directories
List Directories
Query Parameters
data_source_id: optional string
include_deleted: optional boolean
name: optional string
organization_id: optional string
page_size: optional number
page_token: optional string
project_id: optional string
Cookie Parameters
session: optional string
Returns
List Directories
curl https://api.cloud.llamaindex.ai/api/v1/beta/directories \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY"{
"items": [
{
"id": "id",
"name": "x",
"project_id": "project_id",
"created_at": "2019-12-27T18:11:19.117Z",
"data_source_id": "data_source_id",
"deleted_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"updated_at": "2019-12-27T18:11:19.117Z"
}
],
"next_page_token": "next_page_token",
"total_size": 0
}Returns Examples
{
"items": [
{
"id": "id",
"name": "x",
"project_id": "project_id",
"created_at": "2019-12-27T18:11:19.117Z",
"data_source_id": "data_source_id",
"deleted_at": "2019-12-27T18:11:19.117Z",
"description": "description",
"updated_at": "2019-12-27T18:11:19.117Z"
}
],
"next_page_token": "next_page_token",
"total_size": 0
}