Use case
An AI agent for back office work
The agent moves data between systems that do not talk to each other, prepares recurring documents and logs every step it takes. What decides whether it is worth building is not how often the task repeats but how often it needs human judgment. Count the exceptions first.
By Gorden WübbeAutomation, agents and search visibilityUpdated 10 August 2026Count the exceptions, not the repetitions
The instinct is to automate whatever happens most often. For back office work that is the wrong first measurement.
A task performed 200 times a week where 40 of those need someone to look at them and decide is a poor candidate: the agent handles 160, and a person still has to stay in the loop for all 200 to spot which is which. A task performed 40 times a week with 2 exceptions is a much better one. The exception rate determines the return, and the volume does not.
Where an agent beats a plain integration
This is worth being honest about, because the cheaper answer is often the right one. If the mapping between two systems is fixed — this field goes to that field, always — build the integration. It is cheaper, faster and more reliable than anything with a language model in it.
An agent earns its place where the input is not consistent:
- A supplier who redesigns their invoice layout twice a year, breaking any template-based extraction.
- A field that has to be inferred from a free-text note rather than read from a column.
- Documents arriving in whatever form the sender felt like — PDF, photo of a printout, text in the body of an email.
- A process with rules that apply differently depending on context a rigid integration cannot see.
What it should not do on its own
Release money. Preparing a payment, matching it to an order and flagging what does not add up is useful. Executing it is a policy line worth keeping even where the technology could cross it.
Guess when unsure. In customer-facing work a slightly wrong answer is recoverable in the next sentence. In back office work a wrong entry propagates into reports and surfaces a month later, when nobody remembers the context. The escalation threshold belongs deliberately low here.
Work around a broken process. If figures are copied between two systems because a decision about which one is authoritative was never made, automating the copying makes the ambiguity permanent and harder to see.
The audit trail is part of the build
Every action gets logged with the input it saw, what it decided and on what basis. Not because a regulator asked, but because someone eventually will ask how a particular figure came to be where it is, and “the agent did it” is not an answer that survives that conversation.
This is also what makes an agent easier to trust than the spreadsheet macro it usually replaces, which typically has no log at all.
What it connects to
Whatever holds the data: accounting or ERP, document storage, the shared inbox where things arrive. This is the use case where the state of your systems matters most — an application with no usable interface turns a four-week build into a different project, and that is worth establishing before anything else.
How to tell whether it worked
- Time spent on the task per week, before and after.
- Error and rework rate — entries that had to be corrected later.
- Share of cases escalated to a person, tracked over time.
- Backlog age: how old the oldest unprocessed item is.
The third one should fall over the first weeks as edge cases get turned into rules, and then flatten. If it does not flatten, the process was less defined than everyone believed.
What people ask about back office automation
- Is this not just what an integration does?
- Where the mapping is fixed, yes — and then you should build the integration, which is cheaper and more reliable. An agent earns its place when the input is unstructured or inconsistent: a supplier who changes their invoice layout, a field that has to be inferred from a free-text note.
- What happens when the agent is unsure?
- It stops and asks. In back office work a wrong entry is worse than a delayed one, because it propagates into reports and gets discovered a month later. The escalation threshold should be set deliberately low here, lower than in customer-facing work.
- Can it handle invoices and payments?
- It can prepare them, extract the data, match against orders and flag discrepancies. It should not release a payment. Anything that moves money keeps a person in the loop, and that is a policy decision rather than a technical limitation.
- How is this auditable?
- Every action the agent takes is logged with its input, what it decided and why. That trail is part of the build rather than an extra, because back office work is exactly where someone eventually asks how a figure came to be there.
- What decides whether this is worth automating?
- The exception rate, not the volume. A task done 200 times a week where 40 need human judgment is a poor candidate. The same task with 5 exceptions is a good one. Count the exceptions before counting the repetitions.
Read next
Which task does someone do every morning?
Copying figures between two systems, preparing the same document, chasing the same missing field. Thirty minutes is enough to tell whether it is a candidate.
Book a scoping call