Privacy Tools Guide

State attorneys general enforce privacy laws through data breach notification statutes, unfair trade practice acts, and state-specific privacy regulations (CCPA, CPA, etc.) with enforcement authority that can result in multimillion-dollar settlements when companies violate consumer rights at scale. Filing complaints requires identifying your state’s AG office (most have online forms), describing the privacy violation with documentation (screenshots, emails, data breaches), explaining financial or identity harm, and identifying whether your state has specific privacy laws the company violated. Unlike federal FTC complaints which go into a database, state AG offices can initiate investigations that lead to enforcement actions; in fact, many landmark privacy settlements (Meta’s $100M, Google’s $393M, Equifax’s $700M) originated from state AG investigations rather than individual complaints. Developers should document: what data was collected, whether consent was obtained, retention duration, any unauthorized sharing, and breach notification failures—patterns showing systemic violations rather than isolated incidents get AG attention.

Understanding State AG Privacy Enforcement Powers

Every U.S. state and territory has an attorney general office with authority to enforce consumer protection laws, including state-level privacy regulations. These offices can:

The California Consumer Privacy Act (CCPA), Virginia’s Consumer Data Protection Act (VCDPA), Colorado Privacy Act (CPA), and similar state laws create concrete enforcement mechanisms that state AGs actively use.

Identifying Applicable State Laws

Before filing a complaint, determine which state laws apply to your situation. Your state’s laws protect you if you are a resident, but companies may also be subject to your state’s jurisdiction if they conduct business there.

Most state privacy laws share common elements:

State Law Enforcement
California CCPA/CPRA California AG, CPPA
Virginia VCDPA Virginia AG
Colorado CPA Colorado AG
Connecticut CTDPA Connecticut AG
Utah UCPA Utah AG

Even without privacy laws, every state has consumer protection statutes that address deceptive practices—which often encompass data mishandling.

Filing a Complaint: Step-by-Step Process

Step 1: Gather Evidence

Document everything before submitting your complaint. Collect:

Step 2: Locate the Correct Office

Most state AGs provide online complaint portals. Here’s a quick reference for major states:

# California Attorney General
# https://oag.ca.gov/contact/consumer-complaint-against-business-or-company

# New York Attorney General
# https://ag.ny.gov/internet/consumer-fraud-bureau

# Texas Attorney General
# https://www.texasattorneygeneral.gov/consumer-protection/file-consumer-complaint

# Florida Attorney General
# https://www.myfloridalegal.com/contactus

Step 3: Submit Your Complaint

Most portals accept complaints through web forms. Structure your complaint with:

  1. Your information: Name, address, contact details
  2. Company information: Name, address, website, relevant employees
  3. Description of violation: Specific privacy law sections violated
  4. Harm suffered: Financial harm, identity theft risk, emotional distress
  5. Evidence: Attach documentation as supporting files

Example Complaint Template

COMPLAINT DETAILS:

Company Name: [Company Name]
Company Address: [Address]
Company Website: [URL]

Violation Description:
Under [State] Consumer Privacy Law Section [X], consumers have the right to [specific right]. On [date], I submitted a data deletion request to [company] via [method]. As of this complaint, [company] has failed to respond within the required [30/45] day timeframe / has denied my request without valid legal basis.

Supporting Evidence:
- Exhibit A: Copy of original privacy request dated [date]
- Exhibit B: Company's response dated [date]
- Exhibit C: Screenshot of privacy policy section [X]

Harm Suffered:
[Description of concrete harm - e.g., continued storage of personal data, risk of breach]

Following Up on Your Complaint

After submission, expect the following timeline:

  1. Week 1-2: Acknowledgment of complaint receipt
  2. Week 2-8: Initial review and jurisdiction determination
  3. Month 2-6: Investigation (if accepted)
  4. Ongoing: Potential enforcement action or referral

Tracking Your Complaint Status

Many state AG offices provide complaint tracking numbers. Use them to:

# Example follow-up email template
Subject: Follow-up: Complaint #[NUMBER] - [COMPANY NAME]

Dear [AG Office Contact],

I am writing to follow up on complaint #[NUMBER] filed on [date] regarding [company name]'s violation of [state] privacy law.

Could you please provide an update on the status of this complaint? I am available to provide additional documentation if needed.

Thank you for your attention to this matter.

Best regards,
[Your Name]
[Complaint Number]

Escalation and Multi-State Action

For widespread violations affecting multiple states, consider:

Multi-State Complaints

File complaints in multiple states simultaneously. Many AGs coordinate on large-scale investigations. Document your complaints in each state and note the coordination in follow-up communications.

Referrals and Class Actions

State AGs may refer cases to:

Technical Documentation for Privacy Violations

As a developer or power user, you can provide technical evidence that strengthens your complaint:

API Request Evidence

# Document data access API calls
curl -v "https://api.company.com/v1/account/data" \
  -H "Authorization: Bearer [TOKEN]" \
  -H "Accept: application/json"

Use browser developer tools to capture:

Data Request Timestamps

// Log timestamps of privacy requests
const privacyRequestLog = {
  requestType: 'deletion',
  date: new Date().toISOString(),
  company: 'Example Corp',
  method: 'email',
  responseDeadline: new Date(Date.now() + 30*24*60*60*1000).toISOString(),
  actualResponse: null
};

If state AG enforcement proves insufficient, consider:

State attorneys general remain powerful allies in enforcing your privacy rights. By documenting violations systematically and submitting well-structured complaints, you contribute to enforcement efforts that hold companies accountable.

Built by theluckystrike — More at zovo.one