43% of Part I — the exam's largest section, split across 4 modules.
this deck covers 1 of 3 sub-topics in this module
↑ Module 2 Overview"Events are occurrences that trigger flows to run." Every flow starts with exactly one event card, and picking the right type of event is the first real design decision in building a flow.
Two different mechanisms hide behind the same "application event" label:
→ Webhook-driven: "Many application events, including those from Okta, are triggered in response to an incoming webhook" — the external system calls Workflows the moment the event occurs.
→ Polling-driven: other cards check the service for new/updated records on a recurring schedule — "most of these cards poll the connected application for new data every five minutes by default," though this is configurable.
"Delegating a workflow is an option to have a flow that an Okta admin can view and run directly from the Okta Admin Console" — useful when you want an admin to run an automation without granting full Workflows access. Build it using the Delegated Flow event card from the Add event dialog.
The card's inputs include a group of extensible fields (Text, Number, True/False, or Date & Time — no List type) plus the Okta User ID of the delegated user and an optional Caller context object when invoked from another Okta product.
Watch for this in your own sandbox run:
→ Assuming every application event fires instantly — plenty are polling-based on a 5-minute default schedule, not webhook-driven.
→ Dropping a Pause card straight into a delegated flow — it isn't allowed there; move that logic into a helper flow instead.
Sources: help.okta.com — Events (ext-about-events); Delegated flows (ext-about-delegated-flows); Build a delegated flow (ext-http-method-delegated)
Next: Actions & Functions →