Ohana360Help Center
Setup & Administration

The flow canvas: building a record-triggered flow step by step

Start, condition, branches, actions and scheduled paths: a walkthrough of building an automation on the canvas.

7 min readUpdated: September 2, 2026Türkçe oku

How to read the canvas#

The flow canvas shows your automation as nodes flowing top to bottom: Start, Condition Check, two branches depending on the outcome, and an End at the tip of each branch. Open it from Setup > Flows > + New Flow > Record-Triggered Flow. The canvas is not a separate window: it opens inside the page, and the Flows link at the top left returns to the list.

Careful: The canvas is fine for viewing on a phone. Build and edit flows on a desktop.

1. Record-Triggered Start#

The start node asks for two things:

  • Object: your org's licensed objects plus any custom objects you created in Object Manager.
  • Event: When a record is created or When a record is updated.

The flow engine is not limited to the UI: writes from the API, web forms and webhooks trigger flows too. Wherever a record comes from, your automation runs.

2. Condition Check#

The decision node holds up to 10 conditions. The field list combines core fields, the custom fields you added in Object Manager and the Owner field. With more than one condition you pick the logic: All (AND), Any (OR) or a Custom expression such as 1 AND (2 OR 3).

Field typeOperators
Textcontains, does not contain, equals, not equal, starts with, is filled, is empty
Picklistequals, not equal, is filled, is empty
Numberequals, not equal, greater than, greater or equal, less than, less or equal, is filled, is empty
Dateafter this date, before this date, on this date, is filled, is empty
Update events onlychanged, changed to

The changed to operator catches the moment a field newly reaches the target value: a record whose stage is already Won will not re-run the flow when some other field changes. With no conditions at all, every record travels down the Met branch.

3. The Met and Not met branches#

Below the condition node sit two columns: Met on the left and Not met on the right. In update flows they are labelled "new" and "no longer met": the left branch runs when a record newly satisfies the condition, the right one when it stops satisfying it. Each branch carries its own action sequence, executed top to bottom.

4. Actions#

ActionWhat it doesWhere it runs
Show NotificationIn-app bell notification (everyone or the record owner)App + server
Push NotificationSends a push notification to the phone or browserServer
Send EmailSends a templated or free-text e-mail to the address on the recordServer
Send SurveyE-mails the survey; opens a send task when there is no addressApp + server
Create TaskOpens a task on the record for its owner (subject, type, due days)App + server
Update FieldUpdates a field on the triggering record with a value, placeholder or formulaApp + server
Update Related RecordUpdates the parent record (a case's account, a task's related record)App + server
Update Child RecordsUpdates all child records at once, up to 200 recordsApp + server
Create RecordCreates a record on another object and links it back through a lookupApp + server
Assign OwnerAssigns the record to a user or a queueApp + server
Post to FeedPosts to the record's timelineApp + server
Call WebhookSends the record to an external system as a signed POSTServer

5. Scheduled Paths#

The Scheduled Paths section under the canvas carries actions that run with a delay after the Met branch. A path has three settings: a number of days, a direction (before / after) and a reference (the trigger moment or a date field on the record). Paths based on a date field run on the server at 09:00 Türkiye time that day. Just before a path fires, the condition is re-evaluated: a record that no longer matches is skipped.

Value or formula?#

Actions that write a field accept the value two ways. On the Value tab you use plain text and placeholders: {kayıt} for the record name, {sahip} for the owner, {bugün} for today, plus any field name of the record. On the Formula tab you get field names, + - * / &, comparisons and the IF AND OR NOT ISBLANK TODAY DAYS ROUND ABS MIN MAX functions, with a live preview of the result underneath.

The library: templates and the action guide#

The Library at the bottom of the canvas has two tabs. Action Guide reproduces the table above inside the app. Templates offers 17 ready-built flows: press Use on a card and the object, conditions and actions arrive prepared, leaving you only the wording to adapt. If the canvas already holds content, you are asked to confirm before it is replaced. Templates are filtered by flow type and by your org's licensed objects.

TemplateObjectType
Critical case: urgent call task and notificationCaseRecord-Triggered
Satisfaction survey when a case closesCaseRecord-Triggered
Case open for 3 days: notify the managerCaseRecord-Triggered
Won opportunity: celebration and account type updateOpportunityRecord-Triggered
Reminder 3 days before the close dateOpportunityRecord-Triggered
Large opportunity: push to the managerOpportunityRecord-Triggered
Web lead: call within 1 dayLeadRecord-Triggered
Lead untouched for 7 days: reminderLeadRecord-Triggered
New account: welcome e-mailAccountRecord-Triggered
Push the new owner when ownership changesAccountRecord-Triggered
Reminder 1 day before the appointmentAppointmentRecord-Triggered
Appointment completed: patient status updateAppointmentRecord-Triggered
Reminder 1 day before check-inReservationRecord-Triggered
Check-out day feedback surveyReservationRecord-Triggered
Overdue invoices: collection taskInvoiceScheduled
Overdue open tasks: push the ownerTaskScheduled
Opportunities closing this weekOpportunityScheduled

The Appointment and Reservation templates appear only when the matching industry edition is enabled.

Watching the Run History#

The Run History card at the bottom of Setup > Flows lists recent runs: Time (Türkiye time), Flow, Related Record (clickable), Actions, Source (App, API, Web form, Webhook, Scheduler, Scheduled path) and Result (Done or Error). This is where you confirm whether a flow actually ran. For the Preview Matches and Run Now buttons, which belong to scheduled flows, see Scheduled and screen flows.

Example: a reminder 3 days after the quote#

  1. Setup > Flows > + New Flow > Record-Triggered Flow. Name it "Quote follow-up".
  2. Start: object Opportunity, event When a record is updated.
  3. Condition: field Stage, operator changed to, value your quote stage.
  4. On the Met branch add Show Notification: "Quote sent: {kayıt}".
  5. + Add Path: name "After 3 days", days 3, direction after, reference trigger moment.
  6. Under the path add Create Task: subject "Follow up the quote: {kayıt}", type Call, due in 0 days.
  7. Save. New flows are active by default; clear the Active checkbox in the list to stop one.

If the stage moves on within those three days, the re-check finds no match and no task is opened. For the wider map of automation tools, see Automation.

Was this article helpful?