An organization is piloting an autonomous AI seller agent to send follow-up emails to leads on behalf of reps. Legal wants every email involving a deal value above $50,000 to be reviewed by the assigned rep before it is sent. Which configuration extends the agent to satisfy this requirement?
Select an answer to reveal the explanation.
Short Explanation
The requirement here is really about timing: the review has to happen before the email leaves, not after, and it has to happen for the right person. Cutting off a rep's visibility into big deals does the opposite of what is wanted — it takes away their ability to review anything at all. A process that only kicks in once the message has already gone out is watching the barn door after the horse has left; by definition it cannot stop an unreviewed email from reaching a lead. And hiding a button on a form assumes a person is the one clicking send, when the whole point of this scenario is that an autonomous agent is doing the sending on its own, so a form control never enters the picture. What actually solves it is building the checkpoint into the agent's own process, so that whenever a high-value deal is involved, the draft stops and waits for the rep's sign-off before it ever reaches the lead's inbox.
Full Explanation
The correct answer is C. The requirement is that a specific class of agent-generated action — emails tied to deals above a defined value — must pause for human review before it goes out, which is precisely what a human-in-the-loop approval step inside the agent's own flow provides: the agent still drafts and initiates the email, but routes it to the rep for a decision before sending when the deal value crosses the threshold. Option A is incorrect because restricting the rep's security role removes their ability to view the very opportunities they are supposed to be reviewing, which works against the goal rather than enabling oversight. Option B is incorrect because a classic workflow that fires after the agent has already sent the email happens too late to serve as a pre-send review, so it cannot prevent an unreviewed email from reaching the lead. Option D is incorrect because hiding a send button on the opportunity record has no bearing on the agent's own automated sending action, which does not go through that form control at all.