Skip to main content

Delete Resolution

Delete a resolution run and its per-field results permanently. The source job run and extracted data are unaffected, so failed runs can be safely retried.

Delete a resolution run and all its associated per-field results permanently. This action is irreversible. Use it to clean up failed runs, remove outdated resolutions, or free up storage. The originating job run and its extracted data are not affected.

Deletion is permanent. All per-field resolution results associated with this run are removed. The source job run and its extracted data are unaffected.
DELETE/v1/resolutions/{id}

Path parameters

id*uuidResolution run UUID.

curl

Response

Response fields

deletedbooleanAlways true on success.
idstringUUID of the deleted resolution run.

Response

{
  "deleted": true,
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}

Common usage is to delete failed resolution runs before retrying with a new POST /v1/resolutions. The source job run and its extracted data are completely unaffected by this operation, so you can safely clean up resolution experiments without losing upstream results.

Errors

Error responses

401unauthorizedMissing or invalid API key.
404not_foundResolution run not found or does not belong to your organization.
429rate_limitedToo many requests. Retry after the period indicated in the Retry-After header.