Delete Result
Delete Result🔗
Description🔗
This object represents the response of delete service request.
Fields🔗
Parameter Name | Type | Description |
---|---|---|
deleted | list of strings | ID of the documents successfully deleted. Includes IDs that were in the delete request but did not exist in the index. |
failed | list of strings | ID of the documents delete process failed |
Examples🔗
{
"deleted": [
"111",
"333",
"444"
],
"failed": [
"222",
"555"
]
}