Add Directory File
POST/api/v1/beta/directories/{directory_id}/files
Create a new file within the specified directory.
The directory must exist and belong to the project passed in. The file_id must be provided and exist in the project.
Add Directory File
curl https://api.cloud.llamaindex.ai/api/v1/beta/directories/$DIRECTORY_ID/files \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY" \
-d '{
"file_id": "file_id"
}'{
"id": "id",
"directory_id": "directory_id",
"display_name": "x",
"project_id": "project_id",
"unique_id": "x",
"created_at": "2019-12-27T18:11:19.117Z",
"data_source_id": "data_source_id",
"deleted_at": "2019-12-27T18:11:19.117Z",
"file_id": "file_id",
"metadata": {
"foo": "string"
},
"updated_at": "2019-12-27T18:11:19.117Z"
}Returns Examples
{
"id": "id",
"directory_id": "directory_id",
"display_name": "x",
"project_id": "project_id",
"unique_id": "x",
"created_at": "2019-12-27T18:11:19.117Z",
"data_source_id": "data_source_id",
"deleted_at": "2019-12-27T18:11:19.117Z",
"file_id": "file_id",
"metadata": {
"foo": "string"
},
"updated_at": "2019-12-27T18:11:19.117Z"
}