BulkResponse

October 23, 2025 ยท View on GitHub

Success response for bulk search requests

Properties

NameTypeDescriptionNotes
itemsList[object]List of results[optional]
errorsboolErrors occurred during the bulk operation[optional]
errorstrError message describing an error if such occurred[optional]
current_lineintNumber of the row returned in the response[optional]
skipped_linesintNumber of rows skipped in the response[optional]

Example

from manticoresearch.models.bulk_response import BulkResponse

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

# convert the object into a dict
bulk_response_dict = bulk_response_instance.to_dict()
# create an instance of BulkResponse from a dict
bulk_response_from_dict = BulkResponse.from_dict(bulk_response_dict)

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