Update Document
Updates a document.
The only attribute currently supported for update is metadata
. This endpoint can only be called with a non-null metadata
if the document status is indexed
.
Sometimes, when updating a document, a new document ID will be assigned. For this reason, the previous and the new document ID will both be returned in the response. If the document ID was not updated, then these two IDs will be identical.
A 404 Not Found
status code will be returned, if the provided collection name or document path does not exist.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
The name of the collection.
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.
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).