Do Not Ask For What You Already Have: The August Ruling That Turns Your Consent Form Into a Liability
On August 11, 2026, two federal judges in Florida decided two TCPA cases. The Westlaw citations landed one digit apart: 2026 WL 2299332 and 2026 WL 2299337. The industry spent the following week dissecting the first one. The second one is the one that should change how you build.
In Zagury v. Puragin Water, a consumer typed STOP to a text and the court held it may have killed the phone calls too. Reasonable people can argue about that one.
In Specht v. Lee Health System, nobody typed anything. A man declined to sign a form. The company that handed him the form already had every legal right it needed. By asking, it lost them.
The Case Where Asking Was the Violation
The facts read like a fable someone made up to teach a lesson.
A patient arrives at a hospital. He is presented with a terms-of-treatment form that includes, bundled inside it, a TCPA consent to receive automated calls. He signs off on the treatment terms. He declines the consent clause. His chart notes the distinction. He is then denied service and, per the opinion, escorted from the building by armed security.
The hospital later sends him automated calls it characterized as prescription notifications. He sues.
Here is where it gets instructive. The hospital argued the calls were covered by the FCC's healthcare exemptions, and the court agreed. It agreed completely. The messages qualified. The patient had handed over his phone number in a treatment context, and under the applicable exemption that was all the consent anyone needed. The defense was correct on the law.
The hospital lost anyway.
Eric Troutman of Troutman Amin, who has defended more than seventy national TCPA class actions, described the mechanism with the restraint of a man who has watched this movie before:
"In the court's view when Lee offered the consent form to Plaintiff it was essentially setting itself up for failure. It never needed additional consent to begin with. But by offering the form it gave Plaintiff a chance to opt out of messaging, and that's exactly what he did."
Read that twice. The right existed. The request created a door. The consumer walked through it. The court treated the refusal as a revocation of a permission the company never had to ask for.
Troutman's operational conclusion is the whole post in one sentence:
"Businesses out there need to weight the value of superfluous consent efforts against the odds a court may find a refusal to provide a 'second' consent constitutes a revocation of the original consent."
He also named the behavior pattern that produces this outcome, and it will sound familiar to anyone who has ever configured a lead-gen funnel:
"Many businesses out there like to hit consumers with repeated TCPA consent opt in opportunities, even where they may already have the consumer's consent from a previous opt in or by virtue of an exemption or presumption."
That is not a hospital problem. That is a mortgage intake form, a title company's e-sign packet, a property management application portal, a brokerage's open house sign-in sheet, and the dental office's new-patient tablet. Every one of them asks for blanket contact consent. Most of them are asking people who already opted in somewhere upstream.
Why This Breaks AI Agents Specifically, and Worse
A human loan officer asks for consent maybe forty times a week, in person, with context, and usually skips the ask when it would be awkward or redundant.
An autonomous agent asks every single time, because that is what the workflow said to do. It has no instinct for redundancy. It cannot feel the moment when a question is unnecessary. It will run the consent-capture step against a contact who opted in eleven months ago through a different channel, receive a decline, and record that decline as a data point rather than as what it legally is: the destruction of an asset you already owned.
Scale that across a database of forty thousand contacts and you have not built an outreach program. You have built a machine for systematically converting valid permissions into documented revocations, at speed, with timestamps, in a format that opposing counsel will find delightful.
The timing is not academic. On August 19, Troutman reported that The Money Source, a mortgage company, agreed to pay $1.5 million to settle a certified class action over robocalls placed after stop requests. His arithmetic put roughly 3,500 people in the class at about $285 a head.
"$285.00 a head for a TCPA class action settlement is pretty high, but this was POST certification and involved pretty ironclad claims. I mean there's not much defense to sending robocalls after a consumer has asked you to stop."
There is not much defense to it. There is even less defense when the "asking you to stop" was something you volunteered to invite.
The Uncomfortable Symmetry: Some Asks Are Now Mandatory
Here is the part that makes this an architecture problem rather than a policy memo.
While courts are penalizing unnecessary requests for permission, regulators are mandating other kinds of disclosure. Those are two different categories of speech, and most teams have them tangled together in the same script.
On the same day the Florida rulings came down, Colorado released proposed rules implementing both its revised AI Act, now the Automated Decision-Making Technology Act, and its Chatbot Safety Act. Duane Pozza, Kathleen Scott and Lauren Lerman of Wiley Rein summarized the calendar: comments were due September 4 for consideration ahead of the October 26 hearing, and the finalized rules take effect January 1, 2027.
The substance matters more than the calendar. Proposed Rule 3 requires that consumer communications be "understandable, accessible, available in relevant languages, readable across devices, provided through ordinary channels of interaction, and not unfair, deceptive, false, or misleading." Proposed Rule 6 requires an adverse outcome disclosure whenever automated decision-making technology materially influences a consequential decision that goes against the consumer, with prescribed format, timing, and content. Proposed Rule 7 requires that consumers be able to request and correct the personal data used in that decision and to seek meaningful human review.
Note the grammatical difference, because it is the entire design principle:
| Mandatory disclosure | Optional consent request | |
|---|---|---|
| Form | A statement | A question |
| Example | "You are speaking with an AI assistant." | "May we contact you by automated call or text?" |
| Consumer can decline | No | Yes |
| Downside of doing it | None | Can revoke rights you already held |
| Downside of skipping it | Regulatory exposure | None, if the right already exists |
| Correct default | Always | Only when the right is absent |
A disclosure is a declarative sentence. It cannot be refused, so it cannot cost you anything. A consent request is an interrogative sentence, and an interrogative sentence is an open door in both directions.
Most AI outreach scripts in this industry merge the two into one breezy opener that discloses and asks in the same breath. After August 11, that is a design flaw with a price tag.
The Pre-Ask Audit: A Build You Can Do This Week
What follows is not compliance advice, and your counsel gets the final read. It is an architecture, and it is buildable inside any competent agent platform. The premise is one rule:
An agent may not request a permission it already possesses.
Enforced at runtime. Not in training. Not in a PDF. At the moment of execution, before the first token goes out the door.
Step one: classify every utterance before you write a single prompt
Take your outreach scripts and sort every sentence into three buckets. Most teams discover they have never done this, and that the sorting alone surfaces two or three requests nobody could justify.
Bucket A, Declarations. AI identity disclosure, recording notice, company identification, the purpose of the contact, adverse-outcome notices where automated decisioning applied. These are statements. They always fire. They never carry a question mark.
Bucket B, Rights You Already Hold. Contact permissions established by a prior opt-in, an existing business relationship, a transactional exemption, or an executed agreement. These are never mentioned. Not confirmed, not double-checked, not "just making sure we still have your okay to reach out." Silence is the compliant behavior here, and it is now also the profitable one.
Bucket C, Genuine Gaps. Permissions you actually lack and actually need. Marketing consent for someone who has only ever transacted with you. A new channel not covered by the original opt-in. These get asked, once, deliberately, and only after the agent has verified the gap is real.
The failure mode the Florida court punished is Bucket B leaking into Bucket C. That is it. That is the whole bug.
Step two: the five-question gate
Before any agent in your stack emits a consent request, it must pass this check. Write it as a tool the agent must call, not as an instruction it should remember. Instructions are suggestions. Tool gates are physics.
- Does a valid permission already exist for this contact, this channel, and this message purpose? If yes, stop. Do not ask. Proceed under the existing right.
- If a permission exists, is it broader than or equal to what I am about to request? Asking for narrower consent than you hold is a downgrade dressed as diligence.
- Does an exemption or established business relationship already cover this contact? Specht turned on precisely this. The exemption was valid. The ask destroyed it.
- If I ask and the answer is no, what do I lose? If the honest answer is "something I currently have," the request is not neutral. It is a wager, and the house edge belongs to the plaintiff's bar.
- Is this a disclosure rather than a request? If it can be phrased as a statement without a question mark, phrase it that way and move on.
Only a contact that fails question one and clears questions two through five gets asked anything.
Step three: split the work across agents so the gate cannot be bypassed
A single agent holding both the permission data and the outreach objective will eventually rationalize its way around its own rules. Models are agreeable. Give them a goal and a constraint in the same context window and the goal tends to win on the margins.
Separate the concerns instead. On a platform like Oppy, where you launch and manage discrete AI employees rather than one monolithic assistant, this is a configuration decision rather than an engineering project.
The Registrar owns permission state and nothing else. It reads from the CRM, the dialer, the texting platform, and the e-sign archive, and it answers exactly one question: what may we do with this human, on which channel, for which purpose, as of right now. It has no outreach objective. It cannot be talked into anything because it wants nothing.
The Communicator does the actual work of calling, texting, and emailing. It has no direct access to permission records. It must call the Registrar and receive an explicit grant before composing anything. If the Registrar returns a gap, the Communicator does not improvise a consent request. It escalates.
The Petitioner is the only agent permitted to ask for permission, it runs the five-question gate as a hard precondition, and it is invoked rarely by design. If your Petitioner is firing on more than a small minority of contacts, your Registrar is not reading everything it should be reading.

Three narrow agents beat one clever one. This is the same conclusion Chris Peterson reached from a completely different direction in an August 18 analysis of property management agents, and the line is worth stealing verbatim:
"Everything an agent should do is intake, classification, and communication. Everything it shouldn't do is a decision about a person."
Whether to spend a legal right is a decision about a person.
Step four: the prompt fragment that does the heavy lifting
Specificity is what separates an agent that follows a rule from an agent that acknowledges one. Drop this into your Communicator's system prompt and adapt the field names to your stack:
PERMISSION PROTOCOL - BLOCKING
Before composing any outbound message, call registrar.check(contact_id,
channel, purpose). Do not compose first and verify after.
The Registrar returns one of:
GRANTED(scope, basis, expires_at)
-> Proceed. Do NOT reference, confirm, or re-verify consent in your
message. Do not write "you previously agreed to," "since you opted
in," or any variant. The permission is settled. Mentioning it
reopens it.
ABSENT(missing_scope)
-> Do NOT ask for it yourself. Emit HANDOFF:PETITIONER with the
missing scope. End your turn.
REVOKED(scope, revoked_at, revoked_via)
-> Do NOT contact on this channel. Do NOT send a confirmation asking
them to clarify the scope of their revocation unless the Registrar
explicitly returns confirmation_permitted=true. Log and end.
UNKNOWN
-> Treat as REVOKED. An unresolved record is not a permission.
MANDATORY DECLARATIONS (always, never as questions):
- AI identity: state it in the first turn, in plain language
- Recording notice: where jurisdiction requires
- Company identity and purpose of contact
These are statements. They contain no question mark. They are not
subject to the Registrar's response.
PROHIBITED:
- Any consent request not routed through the Petitioner
- Bundling a consent request with a transactional message
- Re-confirming a GRANTED permission for any reason
That last prohibition is the one people fight. It feels wrong. Confirming consent feels like good manners and good hygiene. Specht is the case that says good manners cost $285 a head at settlement, plus fees.
Step five: instrument the thing you have never measured
Every organization tracks opt-in rate. Almost nobody tracks the number that actually predicts exposure.
Unnecessary Ask Rate. Consent requests issued to contacts who already held the requested permission, divided by total consent requests. The target is zero. Most teams running this measurement for the first time find a number they do not enjoy, concentrated in one form nobody has looked at since 2023.
Revocation Source Attribution. For every revocation in the last ninety days, what triggered it. If a meaningful share traces back to your own request rather than to consumer-initiated STOP messages, you are manufacturing your own liability and paying to do it.
Permission Decay. How many contacts moved from GRANTED to UNKNOWN because a system migration orphaned the record. UNKNOWN is not neutral. Under this protocol it is treated as revoked, which is correct, and it is also silently shrinking your reachable database while your dashboards show it as flat.
What the Operators Getting This Right Are Actually Doing
The pattern showing up across residential services is not restraint for its own sake. It is that the firms deploying agents at real scale have separated the permission question from the doing question.
IMA Financial Group announced on August 19 that more than 95 percent of its 3,000-plus employees now use AI daily across what it describes as thousands of agentic workflows, built through an internal AI Studio that promotes employee-originated pilots into organization-wide tools. Chairman and CEO Rob Cohen framed the achievement in terms that have nothing to do with models:
"For IMA, AI is a people transformation, not a technology transformation; and there is no better example of that than the thousands of agentic AI workflows already put in place, led by the innovation of our associates."
Thousands of workflows means thousands of potential asks. That only works with governance underneath it.
The gap between dabbling and finishing is where most firms are stuck. Buildium and NARPM's 2026 industry report found that property management companies using AI tripled in a single year, from 20 percent to 58 percent. Senior researcher Robin Young noted that the most common uses remain writing property descriptions and customer communications. In the August 18 analysis cited above, Peterson pulled the companion figure: only 8 percent of firms have fully automated any single workflow. Adoption is broad. Completion is rare. The firms that finish are the ones that solved governance first, because governance is what lets you turn the thing on without watching it.
And on the brokerage side, the ambition is getting expensive enough that the plumbing matters. Douglas Elliman used its Q2 earnings call to detail a company-wide AI transformation running on Google Cloud alongside Elius, its proprietary intelligence platform. CEO Michael S. Liebowitz, quoted in Nick Pipitone's August 19 tech roundup for Inman, put the strategic case this way:
"For generations, residential real estate has been organized around the transaction, and for just as long, the data that those transactions generate has been monetized by nearly everyone except the brokerages that created it."
He called the effort "a disciplined, self-funded pursuit." Discipline in an AI program is not a synonym for slow. It means knowing which actions the system is not allowed to take.
The Oldest Version of This Advice
None of this is really new. It is just newly enforceable.
On the August 18 episode of Real Estate Insiders Unfiltered, James Dwiggins hosted Barb Betts to talk about why human connection gets more valuable as the tools get better. One of her themes was that agents should stop chasing referrals and build genuine relationships before they start asking for them. The show's framing:
"As AI gives every agent access to similar tools, information, and technology, human connection becomes the differentiator competitors can't copy."
Betts was making a relationship argument, not a legal one. She arrived at the same place anyway. The premature ask costs you something. It always did. What changed on August 11 is that a federal court put a number on it.
The best salespeople have always known when not to ask. Now your agents need to know it too, and unlike your best salesperson, they will only know it if you build it.
Start with the audit. Find the form nobody has opened since 2023. Count how many people it asks for something you already have. That number is your exposure, and it is also, quietly, your pipeline.
References
- REVOCATION BY REJECTION?: Court Holds Refusal to Sign a Consent Form Constitutes Revocation of Existing TCPA Healthcare Exemption and This One Is Really Interesting. Eric Troutman, Troutman Amin LLP, TCPAWorld, August 13, 2026, updated August 17, 2026. Discussing Specht v. Lee Health System, Inc., 2026 WL 2299337 (M.D. Fla. Aug. 11, 2026)
- TAKE NOTE: Court Holds A "Stop" Request to a Text Message May Revoke Consent For Both Calls and Texts in TCPA Class Action Ruling. Eric Troutman, Troutman Amin LLP, TCPAWorld, August 13, 2026. Discussing Zagury v. Puragin Water, 2026 WL 2299332 (S.D. Fla. Aug. 11, 2026)
- PAYING FOR IT: The Money Source Lives Up To Its Name, Agrees to Pay $1.5MM to Settle TCPA Suit Involving Robocalls After Stop Requests. Eric Troutman, Troutman Amin LLP, JD Supra, August 19, 2026
- Colorado Proposes Detailed Rules Implementing New ADMT And Chatbot Laws. Duane C. Pozza, Kathleen E. Scott and Lauren N. Lerman, Wiley Rein LLP, August 19, 2026
- Notice of Proposed Rulemaking, ADMT Act and Chatbot Act. Colorado Attorney General, August 11, 2026
- AI Agents for Property Managers: Tenant Screening, Maintenance Requests, and Lease Renewals. Chris Peterson, Pickaxe, August 18, 2026
- The 2026 property management industry trends & opportunities you should know. Robin Young, Senior Researcher, Buildium, drawing on the 2026 Buildium and NARPM State of the Property Management Industry Report
- IMA reaches enterprise-wide AI adoption. Shefi Ben-Hutta, Coverager, August 19, 2026
- Tech Roundup: Martha Stewart gets into the proptech game. Nick Pipitone, Inman, August 19, 2026
- Agent Series 51: Don't Let AI Replace Human Connection. James Dwiggins with Barb Betts, Real Estate Insiders Unfiltered, Episode 252, August 18, 2026
- FHEO Guidance on Application of the Fair Housing Act to the Screening of Applicants for Rental Housing. U.S. Department of Housing and Urban Development, May 2024
This article is intended as operational and architectural guidance, not legal advice. Consult qualified counsel before changing your consent practices.