Skip to main content
Workflow API endpoints are currently in alpha and are subject to change.

List workflows

Retrieve a paginated list of workflows, most recently updated first. API reference
CLI reference

Get a workflow

Fetch a simplified workflow graph with node types, connections, and selected display fields.
Save rootNodeId and the keys in nodes. Use them to request full node details with Get workflow node.
API reference
CLI reference

Get workflow node details

Use the simplified workflow graph to pick a nodeId, then fetch the full node configuration. API reference
CLI reference

Walk connected nodes

After fetching a node, follow nextNodeIds to load the next steps in the workflow.

Edit a workflow email’s content

Each SendEmailAction node includes an emailMessageId. Pass that ID to the email message content APIs to read or edit the email’s subject, LMX body, sender, and more. First fetch the current content to get its contentRevisionId, then send an update.
Save the returned contentRevisionId after each update and pass it as expectedRevisionId on the next update to avoid 409 Conflict errors caused by stale revisions.
Get email message API reference CLI reference
Update email message API reference CLI reference
Last modified on July 2, 2026