POST
/
documents
/
{document_id}
/
update_file
curl --request POST \
  --url http://localhost:8000/documents/{document_id}/update_file \
  --header 'Content-Type: multipart/form-data' \
  --form 'metadata={}' \
  --form 'rules=[]' \
  --form update_strategy=add
{
  "external_id": "<string>",
  "owner": {},
  "content_type": "<string>",
  "filename": "<string>",
  "metadata": {},
  "storage_info": {},
  "storage_files": [
    {
      "bucket": "<string>",
      "key": "<string>",
      "version": 1,
      "filename": "<string>",
      "content_type": "<string>",
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ],
  "system_metadata": {},
  "additional_metadata": {},
  "access_control": {},
  "chunk_ids": [
    "<string>"
  ]
}

Headers

authorization
string

Path Parameters

document_id
string
required

Query Parameters

use_colpali
boolean | null

Body

multipart/form-data
file
file
required
metadata
string
default:{}
rules
string
default:[]
update_strategy
string
default:add

Response

200
application/json
Successful Response

Represents a document stored in MongoDB documents collection

owner
object
required
content_type
string
required
external_id
string
filename
string | null
metadata
object
storage_info
object
storage_files
object[]

Information about a file stored in storage

system_metadata
object
additional_metadata
object
access_control
object
chunk_ids
string[]