Skip to main content
GET
/
v1
/
workflows
/
edges
/
versions
/
{edge_version_id}
from retab import Retab

client = Retab()

version = client.workflows.edges.get_version("ever_abcdefghijklmnopqrstuvwxyz012345")
print(version.source, version.target)
{
  "id": "<string>",
  "edge_id": "<string>",
  "workflow_id": "<string>",
  "organization_id": "<string>",
  "environment_id": "<string>",
  "workflow_version_id": "<string>",
  "source": "<string>",
  "target": "<string>",
  "source_handle": "<string>",
  "target_handle": "<string>",
  "animated": true,
  "created_at": "2023-11-07T05:31:56Z"
}

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.

Fetch one immutable edge version by its ever_... id. An edge version is a snapshot of the source, target, and handles inside one workflow version.
from retab import Retab

client = Retab()

version = client.workflows.edges.get_version("ever_abcdefghijklmnopqrstuvwxyz012345")
print(version.source, version.target)

Authorizations

Api-Key
string
header
required

Path Parameters

edge_version_id
string
required

Response

Successful Response

Immutable edge snapshot derived from a workflow version.

id
string
required

Public content-addressed edge version ID

edge_id
string
required

Stable logical edge ID

workflow_id
string
required

Source workflow ID

organization_id
string
required

Organization ID for data isolation

environment_id
string
required

Customer environment ID for data isolation

workflow_version_id
string
required

Workflow version this edge version belongs to

source
string
required

ID of the source block

target
string
required

ID of the target block

source_handle
string | null
target_handle
string | null
animated
boolean
default:true
created_at
string<date-time>