v1
latestOpenAPI 3.0.12026-07-22231676.5 KBVault
Get File Details
Retrieves details and processing status for one or more files by their IDs. A maximum of 1000 file IDs can be provided per request. This endpoint is useful for checking the processing status of recently uploaded files to determine when they are ready to query. Files that are not found or not accessible are returned with an error field instead of file details.
get/api/v1/vault/get_files
Query parameters
file_idsstring[] required
Comma-separated list of file IDs to retrieve details for.
Response
File details retrieved successfully
Example response
{
"response": {
"content": [
{
"file_id": "01936a5f-8289-703a-9962-42bf196ae611",
"file_name": "Employment Agreement - John Smith.pdf",
"processing_status": "ready_to_query",
"content_type": "application/pdf",
"error": "not_found"
}
]
}
}