Keep humans in control of AI-generated content with Oracle’s powerful Human Approval node

AI agents are becoming increasingly capable of drafting, summarizing, and acting autonomously — but enterprise workflows often demand a human check before critical content goes out. Oracle AI Agent Studio Workflow Agent’s Human Approval Node bridges this gap, giving you a configurable, channel-aware gate that pauses agent execution until a human says go.

This post walks through everything you need to know about the Human Approval Node: how it works, what configuration options are available for each channel and model.


What Is the Human Approval Node?

Embedded inside Oracle AI Agent Studio’s workflow agent canvas, the Human Approval Node is a pause-and-route mechanism. When the agent reaches this node, execution halts and a message is sent to a human reviewer over a configured channel. The workflow only resumes once the reviewer acts — approving, rejecting, providing feedback or node times out.

Think of it as a smart checkpoint in your agent’s pipeline: the AI does the heavy lifting, but a human gets the final word before output is committed or published.

🛡️ Human Oversight: Prevent unreviewed AI output from reaching end users or downstream systems.

🔄 Iterative Refinement: Allow users to request changes and regenerate output with targeted feedback.

📬 Multi-Channel: Delivery over Chat for instant interaction, or Email for async workflows with timeouts.

🔀 Decision Routing: Branch the workflow based on Approval or Rejection outcomes.


Approval Models

The Human Approval Node supports two distinct interaction models.

DimensionWithout Feedback (Approve/Reject)With Feedback (Approve/Request Change)
User choicesApprove /  RejectApprove  / Request Change
Loop back capabilityNone — linear flowLoops to a configured node with user’s feedback
Max iterationsNot applicableConfigurable (e.g., 3) — agent stops waiting after limit
Typical use caseSimple gating; approve or discardIterative refinement (tone, style, content adjustments)
Context variable outputAPPROVED or REJECTEDAPPROVEDREJECTED, or iteration exhausted

Supported Channels

Both models are available over two channels: Chat and Email. The channel determines what fields appear in the node’s configuration panel.

Chat Channel

Best for real-time, synchronous review flows. Approval buttons (Approve / Reject or Approve / Request Change) appear inline in the chat interface — no email setup required.

Email Channel

Designed for asynchronous workflows where reviewers may not be present in the application. Requires an Approver email account configured under the Credentials tab. Adds timeout handling so the workflow doesn’t wait indefinitely.


Node Configuration

Below are attributes available to configure based on the Model and Channel combination.

AttributeChat (Without Feedback)Chat (With Feedback)Email (Without Feedback)Email (With Feedback)
NameYesYesYesYes
CodeYesYesYesYes
Error HandlerYesYesYesYes
ChannelChatChatEmailEmail
Enable feedbackOFFONOFFON
Maximum IterationsYesYes
Loop Back NodeYesYes
Request Change MessageYes
Email AccountYesYes
Timeout UnitYesYes
Timeout AfterYesYes
Message TemplateYesYesYesYes
Timeout Message TemplateYesYes
Maximum Iterations TemplateYesYes

Below is more information on configuration attributes specific to Email channel.

Email-Specific FieldPurpose
Email AccountApprover-type email account configured on the Credentials tab
Timeout UnitMinutes, Hours, or Days
Timeout AfterNumeric value paired with Timeout Unit
Timeout Message TemplateTriggered when Timeout is reached before a decision is made

Context Variables from the Node

Other nodes in your workflow can reference the Human Approval Node’s output attributes via context expressions like {{$context.$nodes.NODE_CODE.$output}}.

Context PathVariableDescription
….$actionPerformedAction PerformedThe decision made. Valid values: APPROVEDREJECTED
….$feedbackRecievedFeedback ReceivedText provided by the user when requesting a change. Used to guide the Loop Back Node (e.g., tone, style instructions)
….$iterationsPerformedIterations PerformedCount of how many feedback-and-regenerate cycles have completed

💡All node attributes are accessible in expression builder under Context → Nodes → [Node Name].


Sample Workflow Architecture (Without Feedback)

Human Approval without Feedback

Sample Workflow Architecture (With Feedback)

Human Approval with Feedback