POST
/
documents
/
update-document
curl --request POST \
  --url https://api.zeroentropy.dev/v1/documents/update-document \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "collection_name": "<string>",
  "path": "<string>",
  "metadata": {}
}'
{
  "previous_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "new_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
collection_name
string
required

The name of the collection.

path
string
required

The filepath of the document that you are updating. A 404 Not Found status code will be returned if no document with this path was found.

metadata
object | null

If this field is provided, the given metadata json will replace the document's existing metadata json. In other words, if you want to add a new field, you will need to provide the entire metadata object (Both the original fields, and the new field).

Response

200
application/json
Successful Response
previous_id
string
required
new_id
string
required