Collections Automation with Amazon Connect: A Practical Guide to AI Voice Agents for Debt Recovery Under FCA Consumer Duty

Arkadas Kilic
Author: Arkadas Kilic, Founder & CEO, Rel8 CX

Debt collection is one of the most compliance-sensitive operations in financial services. Get the automation wrong and you are looking at FCA enforcement, Consumer Duty breaches, and reputational damage. Get it right and you recover 20 to 35% more debt, reduce cost-per-contact by over 60%, and give your human agents the capacity to handle the cases that actually need them.

This guide covers exactly how to deploy AI voice agents on Amazon Connect for collections, what the FCA Consumer Duty requires of your automated outreach, and the architecture decisions that determine whether your system reaches production or stalls in a proof-of-concept loop.


Why Collections Is the Right Starting Point for Voice AI

Collections contact centres share a set of characteristics that make them well-suited to autonomous voice agents.

Call flows are highly structured. The conversation paths for early arrears, pre-litigation, and payment arrangement confirmation are predictable. Agents follow scripts. Outcomes are binary or near-binary: payment taken, arrangement made, callback scheduled, hardship identified, no contact.

Volume is high and repetitive. A mid-sized consumer lender may run 50,000 outbound collections calls per month. The majority of those calls follow the same three or four paths. That is exactly the pattern that autonomous agents handle well.

Timing matters more than nuance. Early-stage collections is a numbers game. Contacting a customer within 24 hours of a missed payment increases recovery probability by up to 40% compared to contact at day 7. Human agents working fixed shifts cannot reliably hit that window at scale. Autonomous agents can.

Compliance requirements are well-defined. Unlike some domains where AI governance is still emerging, collections compliance in the UK is codified through FCA CONC rules, the Consumer Duty, and established FOS case history. That gives you a compliance target to build to.


What FCA Consumer Duty Actually Requires of Automated Collections

The Consumer Duty, which came into full force in July 2023, sets a higher standard than treating customers fairly. It requires firms to deliver good outcomes for retail customers, including in collections and recoveries.

Here is what that means in practice for automated voice agents.

Vulnerability Detection Is Non-Negotiable

The FCA expects firms to identify customers who may be in vulnerable circumstances and respond appropriately. For an automated voice agent, this means the system must be able to detect signals of vulnerability during a call and escalate to a human agent in real time.

Signals include: distress in tone, mention of bereavement or illness, confusion about the debt, disclosure of mental health difficulties, or any indication the customer cannot engage with the process. Your agent needs to be configured to recognise these signals and transfer without friction, not after two more turns of conversation.

In production, we configure Amazon Connect contact flows with a parallel sentiment and keyword detection stream. When confidence scores for vulnerability indicators cross a threshold, the transfer is triggered immediately and the human agent receives a pre-populated summary of the call so far.

Affordability and Sustainable Arrangements

Consumer Duty requires that payment arrangements are genuinely affordable, not just accepted by the customer under pressure. Your voice agent must be capable of conducting a basic income and expenditure assessment or, at minimum, prompting the customer to consider their financial position before agreeing to an arrangement.

This is not optional. The FCA has been explicit that automated systems must not push customers into arrangements they cannot sustain. Build the I&E flow into your agent from the start, not as a retrofit.

Consent and Call Recording

All collections calls must be recorded. Amazon Connect provides native call recording to S3, which satisfies this requirement. You also need to ensure your agent clearly identifies itself as automated at the start of the call. The FCA has not prohibited automated collections calls, but the customer must know they are speaking with an automated system.

Configure your opening prompt to state this clearly. Something like: "This is an automated message from [firm name] regarding your account." This is both a compliance requirement and, counterintuitively, a trust signal. Customers who know they are speaking with an automated system are more likely to engage honestly about their financial position.

Right to Speak to a Human

At any point in the call, the customer must be able to request a human agent and be transferred promptly. Your contact flow must handle this intent reliably, including variations like "I want to speak to someone", "can I talk to a real person", "put me through to an agent", and frustrated or unclear versions of the same request.

Test this intent handling thoroughly. A system that fails to transfer when requested is a Consumer Duty breach.

Audit Trails and Explainability

Every decision the agent makes during a call needs to be logged. Which branch was taken, why, what the customer said, what outcome was recorded. This data lives in Amazon Connect Contact Lens and your CRM. You need the integration in place before go-live, not after.


Architecture: How We Build This on AWS

Core Components

A production collections voice agent on Amazon Connect uses the following AWS services.

Amazon Connect handles the telephony layer, contact flows, and outbound campaign management. The outbound campaigns feature, powered by the Amazon Connect outbound communications capability, manages dialling schedules, attempt limits, and time-of-day restrictions that keep you inside OFCOM and FCA guidelines. Amazon Lex provides the conversational AI layer. Lex handles intent recognition, slot filling for payment amounts and dates, and the branching logic that moves the conversation forward. For collections, you are typically working with 8 to 15 core intents: make payment, set up arrangement, request callback, dispute debt, claim hardship, request human, confirm identity, and so on. AWS Lambda connects Lex to your back-end systems. Payment processing, CRM updates, arrangement recording, and real-time data lookups all run through Lambda functions. Keep these functions single-purpose and fast. Latency in a voice call is immediately noticeable. Amazon DynamoDB stores session state and call context. When a customer is mid-conversation and the call drops, or when they call back within the same session window, DynamoDB lets you resume without starting from scratch. Amazon Connect Contact Lens provides real-time and post-call analytics, sentiment scoring, and the compliance monitoring layer. This is where your vulnerability detection data lives and where your QA team reviews flagged calls. Amazon S3 and AWS Glue handle call recording storage and the data pipeline to your analytics environment. You need retention policies configured from day one to satisfy FCA record-keeping requirements.

Identity Verification

Collections calls require identity verification before any account information is disclosed. Build this as the first substantive step in your contact flow, before any debt-related content is presented.

A standard implementation uses two-factor verification: something the customer knows (date of birth, postcode) combined with a one-time passcode sent to their registered mobile number. Amazon Connect integrates with Amazon SNS for OTP delivery. Verification status is written to the contact attributes and is available throughout the rest of the contact flow.

For customers who cannot verify, the flow should offer a callback to their registered number or a secure web link, not simply terminate the call.

Outbound Campaign Management

Outbound collections campaigns need to respect several constraints simultaneously: OFCOM calling time rules (no calls before 8am or after 9pm), FCA guidance on contact frequency (the FCA expects firms not to contact customers excessively), customer-level attempt limits, and time zone handling for customers outside the UK.

Amazon Connect's outbound campaigns feature handles dialling schedules and attempt tracking natively. Configure your campaign parameters in line with your firm's collections policy and document those parameters as part of your Consumer Duty governance evidence.

Escalation and Human Handoff

The handoff from autonomous agent to human agent is the most operationally critical moment in the contact flow. A poor handoff wastes the work the agent has already done and frustrates the customer.

Build your handoff to pass: the customer's verified identity status, the full conversation transcript to that point, the account balance and arrears position, any vulnerability flags triggered during the call, and the customer's stated reason for requesting a human agent. All of this should appear on the human agent's screen before they say their first word.

Amazon Connect's screen pop integration with CRM platforms (Salesforce, Microsoft Dynamics, and others via the Amazon Connect Streams API) makes this achievable without custom middleware.


What Recovery Rates Actually Look Like

Firms deploying autonomous voice agents for early-stage collections are seeing consistent patterns across the industry.

Contact rate improvement: Automated agents can attempt contact across a wider time window than human agents working fixed shifts. Firms running 7am to 9pm autonomous outbound campaigns typically see contact rates 25 to 40% higher than campaigns limited to business hours. Right-party contact rate: Because autonomous agents can attempt more frequently within regulatory limits, right-party contact rates (reaching the actual account holder rather than a voicemail or third party) improve by 15 to 25%. Cost per contact: Human agent cost per outbound collections call typically runs between £4 and £9 depending on AHT and agent cost. Autonomous agents on Amazon Connect run at under £0.50 per contact at scale, including AWS infrastructure and telephony costs. Recovery on early arrears: For accounts in the 1 to 30 day arrears window, firms with autonomous agents in production are recovering 20 to 35% more debt compared to human-only outbound operations with equivalent contact policies. The primary driver is speed of first contact after the missed payment. Human agent capacity: When autonomous agents handle early-stage and routine collections, human agents are freed for complex cases, disputes, hardship conversations, and pre-litigation work. These are the calls where human judgment genuinely adds value. Firms typically see human agent productivity on complex cases improve by 30 to 50% once the routine volume is absorbed by automation.

Common Failure Modes and How to Avoid Them

Building for the Happy Path Only

The most common mistake in collections automation is designing the agent to handle compliant, cooperative customers and treating everything else as an edge case. In practice, 40 to 60% of collections calls involve some form of dispute, confusion, hardship claim, or emotional response. Build those flows first.

Insufficient Intent Coverage

A collections agent that does not recognise "I lost my job last month" as a hardship signal, or that routes "I don't owe this" to a generic fallback, will fail both on compliance and on recovery. Spend the time on intent coverage before you spend time on voice quality.

No Feedback Loop from Human Agents

Your human agents who handle escalated calls are your best source of data on where the autonomous agent is failing. Build a structured feedback mechanism from day one. Weekly review of escalation reasons, flagged transcripts, and agent feedback should feed directly into agent improvement cycles.

Treating Compliance as a Post-Build Audit

Compliance requirements need to be in the architecture from the start. Retrofitting vulnerability detection, consent logging, or I&E flows into a built system is expensive and usually incomplete. We build compliance into the contact flow design, not the QA process.


Timeline: From Brief to Production in 4 to 6 Weeks

A focused collections automation deployment on Amazon Connect follows this timeline.

Week 1: Discovery and design. Collections policy review, compliance mapping against Consumer Duty requirements, contact flow design, intent library definition, and CRM integration specification. Week 2: Build. Amazon Connect environment configuration, Lex intent and slot build, Lambda function development, CRM integration, and identity verification flow. Week 3: Integration and testing. End-to-end testing across all intent paths, vulnerability detection tuning, escalation flow testing, and load testing against expected campaign volumes. Week 4: Compliance review and UAT. Compliance team sign-off on call flows and disclosures, user acceptance testing with collections operations team, and Contact Lens analytics configuration. Weeks 5 to 6: Phased launch. Pilot campaign on a defined account segment, monitoring, tuning, and full campaign launch.

This timeline assumes a firm with an existing Amazon Connect environment or a willingness to stand one up as part of the engagement. It also assumes CRM API access is available and that the firm's compliance team is engaged from week one.


What to Look for in a Build Partner

Collections automation sits at the intersection of contact centre technology, AI engineering, and regulated industry compliance. Most technology vendors are strong on one of those three. You need a team that is strong on all of them.

Ask any prospective partner these questions.

Have you deployed collections voice agents in production, not in a proof of concept? What were the recovery outcomes?

How do you handle vulnerability detection in real time, not just in post-call analytics?

What does your Consumer Duty compliance evidence pack look like for a collections deployment?

How do you manage the ongoing tuning cycle after go-live?

If the answers are vague, the partner has not built this in production.


Building Collections Automation That Works in the Real World

Collections automation on Amazon Connect is not a speculative technology investment. Firms in consumer lending, buy-now-pay-later, utilities, and telecommunications are running autonomous voice agents in production today and recovering more debt at lower cost while satisfying FCA Consumer Duty requirements.

The difference between deployments that work and deployments that stall is almost always the same: teams that build to compliance requirements from the start, design for the full range of customer responses rather than the happy path, and treat go-live as the beginning of an improvement cycle rather than the end of a project.

We build these systems. We deploy them in 4 to 6 weeks. And we operate them in production environments where compliance is not optional.

Book a discovery call

Ready to put AI agents into production?

Book a discovery call. We will assess your use case and show you what 4 to 6 weeks to production looks like.

Book a Discovery Call