Organisational mandates

Agents and systems acting under mandates

An implementation note on software and AI agents acting under organisational authority — and why a valid token is not the same thing as an allowed action.

Implementation note — engineering experience from building against these rules. This page describes practice, not law.

A credential proves that something was issued. An action is allowed only if the authority behind that credential covers this action, for this principal, within this scope, and is still in force at this moment. Systems that collapse those two checks into one — "the token verified, proceed" — are the ones that act without authority while every signature validates. This is the central engineering lesson of building on mandates, and the new EU instruments make it more relevant, not less.

Who this page is for

Teams building services where software acts for organisations — filing, signing, transacting, or (increasingly) AI agents doing all three — and the relying parties who must decide whether to honour those actions.

What the law actually authorises

Start with a sober reading. The digital EU power of attorney authorises "a person to represent the company" [Directive (EU) 2025/25, Art. 16c(1)]; the eIDAS attribute class is "powers and mandates to represent natural or legal persons" [Regulation (EU) 2024/1183 (eIDAS 2), Annex VI, point 9]. The instruments speak of persons. Nothing in either text creates a category of autonomous software as attorney. In practice today, a system acts under a person's or organisation's authority — the mandate chain ends at a human or legal person, and your architecture has to preserve that chain, not obscure it.

Valid token ≠ allowed action

The failure pattern, concretely. A relying party receives a presentation: a well-formed attestation, valid signature, trusted issuer, not expired. Every cryptographic check passes. And yet the action can still be one the company never authorised, because:

The eIDAS framework quietly agrees with the split: relying parties, not wallets, "shall be responsible for carrying out the procedure for authenticating and validating" what is presented to them [Regulation (EU) 2024/1183 (eIDAS 2), Art. 5b(9) of Reg. 910/2014 as inserted]. Verification of the artefact is the floor. Authorisation of the action is the job.

The check that has to run at action time

What we have converged on in practice, per action — not per session, per action:

  1. Resolve the actor to a mandate (the mandate object), not just to an identity.
  2. Test the action against the mandate's scope and constraints — procedure, counterparty, value, jurisdiction.
  3. Test the type — is a co-actor required, and present?
  4. Test freshness — status checked against the authoritative source (register where filed, revocation status where the attestation scheme provides it), with a bounded staleness the risk owner has signed off, because "check every time" has a cost and "never re-check" has a bigger one.
  5. Log the decision with the evidence used — when the action is later disputed, "were they allowed, then?" is answered by the log, not by re-deriving.

For AI agents specifically, one addition has earned its keep: narrower, shorter mandates. An agent that can retry, parallelise and act at machine speed turns a broad mandate into a broad blast radius. The template's scope field is the throttle the legislator has already given you; use it aggressively.

What we are not claiming

No EU instrument currently defines "AI agent mandates", and this page does not pretend otherwise. What exists is: persons, powers of attorney, attestations of powers and mandates, and relying-party duties. The engineering above is how we make those primitives safe to operate — it is practice, and it will be revised as the implementing acts and national transpositions land.

Sources

  1. Law Directive (EU) 2025/25 of the European Parliament and of the Council of 19 December 2024 amending Directives 2009/102/EC and (EU) 2017/1132 as regards further expanding and upgrading the use of digital tools and processes in company law (OJ L, 2025/25, 10.1.2025). http://data.europa.eu/eli/dir/2025/25/oj. Retrieved 2026-08-27.
  2. Law Regulation (EU) 2024/1183 of the European Parliament and of the Council of 11 April 2024 amending Regulation (EU) No 910/2014 as regards establishing the European Digital Identity Framework (OJ L, 2024/1183, 30.4.2024). http://data.europa.eu/eli/reg/2024/1183/oj. Retrieved 2026-08-27.

Cite this page

Rob Prime, “Agents and systems acting under mandates”, EUDIPOA, published 2026-08-27, last verified against its sources 2026-08-27, https://eudipoa.com/mandates/agents.

Better still, cite the instruments themselves — the Sources list below gives each one’s ELI, the EU’s permanent identifier for legislation. This page is a guide to the law, not the law.

Changelog

  • 2026-08-27First published. Implementation note distilled from building Mandate Rail; legal anchors cited where they exist.