Skip to content
Search! & Match! API
DeleteRun
latest

DeleteRun

Delete Run🔗

Description🔗

This object represents the status of a delete by query run as returned by the deleteByQuery and getDeleteRun services.

Fields🔗

Parameter Name Type Description
id text string that represents unique id of delete run
startTime date the start time of this delete run.
endTime date the end time of this delete run.
status enumerated string status of run. Can be SUBMITTED, IN_PROGRESS, FINISHED, FAILED
total long total number of documents intended to be deleted
deleted long number of documents that has been already deleted

Examples🔗

{
    "id": "c1745a1c-b85a-4155-93bd-f2cb3f3d1108",
    "startTime": "2019-05-01T14:03:20.885+02:00",
    "endTime": "2019-05-01T14:03:21.725+02:00",
    "status": "IN_PROGRESS",
    "total": 457,
    "deleted": 15038
}