Skip to main content
DELETE
/
v1
/
workflows
/
{workflow_id}
/
edges
/
{edge_id}
from retab import Retab

client = Retab()

client.workflows.edges.delete(
    workflow_id="wf_abc123xyz",
    edge_id="edge-extract-to-hil",
)
(empty body)

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 single edge. To remove an entire block and all its incident edges in one call, use Delete Block — it cleans up edges automatically. To wipe every edge in a workflow, see Delete All Edges.
from retab import Retab

client = Retab()

client.workflows.edges.delete(
    workflow_id="wf_abc123xyz",
    edge_id="edge-extract-to-hil",
)
(empty body)

Authorizations

Api-Key
string
header
required

Path Parameters

workflow_id
string
required
edge_id
string
required

Query Parameters

access_token
string | null

Response

Successful Response