Skip to main content
DELETE
/
v1
/
workflows
/
{workflow_id}
/
experiments
/
{experiment_id}
from retab import Retab

client = Retab()

client.workflows.experiments.delete(
    workflow_id="wf_abc123",
    experiment_id="exp_abc",
)

Documentation Index

Fetch the complete documentation index at: https://docs.retab.com/llms.txt

Use this file to discover all available pages before exploring further.

Permanently delete an experiment along with all its runs and per-document jobs. Returns 409 if the latest run is still pending or running — call Cancel Experiment first.
from retab import Retab

client = Retab()

client.workflows.experiments.delete(
    workflow_id="wf_abc123",
    experiment_id="exp_abc",
)

Authorizations

Api-Key
string
header
required

Path Parameters

workflow_id
string
required
experiment_id
string
required

Query Parameters

access_token
string | null

Response

Successful Response