EzFlowEzFlow Docs
Pipelines

Pipeline card nodes

Workflow nodes that create, move, update, and delete Pipeline cards automatically.

EzFlow provides four Pipeline card nodes you can add to a Workflow to automate changes to a Pipeline board. All four nodes are tenant-scoped: they can only act on Pipelines that belong to the same tenant as the running Workflow.

NodeNodeType stringWhat it does
CREATE_CARDcreate_cardAdds a new card to a target column
MOVE_CARDmove_cardMoves a card to another column on the same board
UPDATE_CARDupdate_cardPatches fields on an existing card
DELETE_CARDdelete_cardPermanently removes a card

CREATE_CARD

Adds a new card to a column on a Pipeline board.

The target column must have canCreateCard = true (the default). Supplying a column with canCreateCard = false causes the node to return a 422 error.

Required: pipelineId, columnId, name

Optional: description, dueDate (ISO 8601), assignedTo (user ID), data (JSON object)

See the CREATE_CARD reference for full input/output details.

MOVE_CARD

Moves an existing card to a different column on the same board.

The target column must belong to the same Pipeline. If it does not, the node returns a 404.

Required: pipelineId, cardId, toColumnId

See the MOVE_CARD reference for full input/output details.

UPDATE_CARD

Patches one or more fields on an existing card. You must supply the card's current columnId so the engine can locate it.

The data field, if provided, replaces the entire JSON payload — it does not merge with the existing value. Include all keys you want to keep.

Required: pipelineId, columnId, cardId

Optional: name, description, dueDate (ISO 8601), assignedTo (user ID), data (JSON object)

See the UPDATE_CARD reference for full input/output details.

DELETE_CARD

Permanently removes a card from a Pipeline board. Deletion is immediate and cannot be undone.

Required: pipelineId, columnId, cardId

See the DELETE_CARD reference for full input/output details.

  • Pipelines overview — what Pipelines are and how they connect to Workflows
  • Cards — card fields and how the data payload works
  • Workflows — the automation graph these nodes run inside

On this page