UpdateDocumentRequest

October 23, 2025 ยท View on GitHub

Payload for updating a document or multiple documents in a table

Properties

NameTypeDescriptionNotes
tablestrName of the document table
clusterstrName of the document cluster[optional]
docobjectObject containing the document fields to update
idintDocument ID[optional]
queryQueryFilter[optional]

Example

from manticoresearch.models.update_document_request import UpdateDocumentRequest

# TODO update the JSON string below
json = "{}"
# create an instance of UpdateDocumentRequest from a JSON string
update_document_request_instance = UpdateDocumentRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateDocumentRequest.to_json())

# convert the object into a dict
update_document_request_dict = update_document_request_instance.to_dict()
# create an instance of UpdateDocumentRequest from a dict
update_document_request_from_dict = UpdateDocumentRequest.from_dict(update_document_request_dict)

[Back to Model list] [Back to API list] [Back to README]