Skip to main content
DELETE
/
v1
/
workflows
/
evals
/
{eval_id}
from retab import Retab

client = Retab()

client.workflows.evals.delete(
    eval_id="wfnodeeval_hsLEQiM61ez9Piv147MWk",
)
HTTP/1.1 204 No Content
Delete a workflow eval. Returns 204 on success. Run records associated with the deleted eval are kept in the run-records collection (they remain queryable by run_record_id if you cached one) but no longer surface from the eval’s runs endpoint.
from retab import Retab

client = Retab()

client.workflows.evals.delete(
    eval_id="wfnodeeval_hsLEQiM61ez9Piv147MWk",
)
HTTP/1.1 204 No Content

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

eval_id
string
required

Response

Successful Response