Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.08 KB

File metadata and controls

28 lines (22 loc) · 1.08 KB

Zernio::UpdateWorkflowRequest

Properties

Name Type Description Notes
name String [optional]
description String [optional]
nodes Array<WorkflowNode> [optional]
edges Array<WorkflowEdge> [optional]
entry_node_id String [optional]
account_id String Reassign the workflow to a different `SocialAccount`. `platform` and `profileId` are derived server-side from the new account (the client never sends them directly). The account must belong to the caller's workspace and be on a workflow-supported platform (whatsapp, instagram, facebook, telegram, twitter, bluesky, reddit). Changing this triggers a graph revalidation against the new platform. [optional]

Example

require 'zernio-sdk'

instance = Zernio::UpdateWorkflowRequest.new(
  name: null,
  description: null,
  nodes: null,
  edges: null,
  entry_node_id: null,
  account_id: null
)