Upload File To Directory
$ llamacloud-prod beta:directories:files upload
POST/api/v1/beta/directories/{directory_id}/files/upload
Upload a file directly to a directory.
Uploads a file and creates a directory file entry in a single operation. If unique_id or display_name are not provided, they will be derived from the file metadata.
Upload File To Directory
llamacloud-prod beta:directories:files upload \
--api-key 'My API Key' \
--directory-id directory_id \
--upload-file 'Example data'{
"id": "id",
"directory_id": "directory_id",
"display_name": "x",
"project_id": "project_id",
"unique_id": "x",
"created_at": "2019-12-27T18:11:19.117Z",
"deleted_at": "2019-12-27T18:11:19.117Z",
"download_url": {
"expires_at": "2019-12-27T18:11:19.117Z",
"url": "https://example.com",
"form_fields": {
"foo": "string"
}
},
"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",
"deleted_at": "2019-12-27T18:11:19.117Z",
"download_url": {
"expires_at": "2019-12-27T18:11:19.117Z",
"url": "https://example.com",
"form_fields": {
"foo": "string"
}
},
"file_id": "file_id",
"metadata": {
"foo": "string"
},
"updated_at": "2019-12-27T18:11:19.117Z"
}