7% of Part I
2 sub-topics · this deck covers sub-topic 1 of 2
↑ Architecting Flows OverviewBefore you open the Workflows Console, the exam expects you to be able to state the job in plain terms: what event should kick this off, what should happen as a result, and how will you know it worked. Everything downstream — the event card, the action cards, the schedule — falls out of that one sentence.
"Each event and action in a flow works with a pre-built connector, which allows you to communicate with other applications without code or APIs." The basic sequence: create a folder in the Flows tab, click +New Flow, add an event card (pick the app and the trigger event), then add action or function cards that do the work.
Mapping data between cards means dragging a card's output field onto another card's input field — the field types have to match.
You can test a single card in isolation, or run the whole flow with manually entered data via the Run button. "It takes about 60 seconds for the flow to enable" — after saving and turning a flow on, wait a minute before you try to trigger it, or the trigger won't fire yet.
Determining the task also means knowing which run mechanism fits it. Okta Workflows can invoke a flow through an API endpoint (OAuth 2.0, a client token, or as a public service), run it as a delegated flow called from a parent flow, resume a flow that was deliberately paused, or cancel a flow execution outright.
This sub-topic is the "what" — the task statement and the run mechanism. The next sub-topic, Plan Your Flow, is the "how": lining up the actual apps, data, transformations, fields, and schedule before you build. Together they're the entire Architecting Flows section — the next section in Part I is Building Flows, where you actually assemble the cards.
Watch for this in your own sandbox run:
→ Turning a flow on and immediately triggering it — the ~60 second enable delay means your test event can silently do nothing, and won't even show in execution history yet.
→ Confusing an action card with a function card — an action card always talks to an external app; a function card manipulates data or branches logic inside the flow itself.
→ Picking "invoke via API" as the run mechanism when the task is really an in-app event (like a user being assigned to an app) — that calls for an event card trigger, not an API-invoked flow.
Sources: help.okta.com — Build and test a flow (ext-build-a-flow); Run flows (ext-run-flows)
Next: Sub-topic 2 →