Skip to main content
DELETE
/
v1
/
workflows
/
{workflow_id}
/
block-tests
/
{test_id}
from retab import Retab

client = Retab()

client.workflows.tests.delete(
    workflow_id="wf_abc123xyz",
    test_id="wfnodetest_hsLEQiM61ez9Piv147MWk",
)
HTTP/1.1 204 No Content

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.

Delete a block test. Returns 204 on success. Run records associated with the deleted test are kept in the run-records collection (they remain queryable by run_record_id if you cached one) but no longer surface from the test’s runs endpoint.
from retab import Retab

client = Retab()

client.workflows.tests.delete(
    workflow_id="wf_abc123xyz",
    test_id="wfnodetest_hsLEQiM61ez9Piv147MWk",
)
HTTP/1.1 204 No Content

Authorizations

Api-Key
string
header
required

Path Parameters

workflow_id
string
required
test_id
string
required

Query Parameters

access_token
string | null

Response

Successful Response