- Level 1 — Expense Exporting, which handles the full export workflow from job detection to completion.
Before You Start
Before building, you need to be onboarded as a Pleo integration partner and have authentication configured. Pleo supports two authentication methods:- OAuth 2.0 — recommended for most integrations
- API Keys — for integrations where OAuth is not supported
How This Section Is Organised
The documentation is organised into four layers. Each layer serves a different purpose, so knowing which to reach for depends on where you are in your work.Background
Start here if you are new to Pleo accounting integrations. These pages explain the integration model, capability levels, and deployment options. Read these before looking at any implementation detail.- AS/ERP Integration Overview — what the integration covers, integration levels, and key capabilities
- Deployment Decisions — deployment models, OAuth 2.0 setup, and infrastructure considerations
Integration Design
These pages explain the rules and requirements for each part of the integration. They cover what your integration must do, how to handle each scenario, and what Pleo expects. Read these when you need to understand the logic behind a specific topic, such as bookkeeping methods or accounts mapping.Level 1 — Exports
Required for all integrations. Covers bookkeeping methods, accounts mapping, data mapping, attachments, and posting behaviour.
Guides
Guides map the end-to-end workflow for each integration level. They are not implementation references. Their purpose is to show you the complete sequence of steps, why each step exists, and what the inputs and outputs are at each stage. Read the relevant guide before writing code so you understand how everything connects.Level 1 — Expense Exporting
Two guides work together to cover the full export workflow. Use them as a pair.Export Integration Workflow Guide
The Pleo API side: detecting and claiming Export Jobs, retrieving items, updating item statuses, and completing the job.
AS/ERP Processing Workflow Guide
The AS/ERP side: bookkeeping method resolution, accounts mapping, data mapping, attachments, and posting behaviour.
How-to Articles
Each step in the workflow guides links to a corresponding how-to article. The how-to articles are where the implementation detail lives. Each one covers a single step and includes:- step-by-step instructions
- example API requests with curl
- pseudo code explaining the checks and logic
- links to the relevant API reference endpoints
Recommended Reading Order
If you are starting from scratch, follow the steps below.Level 1 — Expense Exporting
1. Background
Read the Overview and Deployment Decisions to understand the integration model and capability levels.
2. Authentication
Configure OAuth 2.0 or API Keys before you start building.
3. Integration Design
Work through the Exports Integration Design pages for the rules behind each topic.
4. Workflow Guides
Read the Export Integration and AS/ERP Processing guides as a pair to understand the full sequence.
5. Implement
Use the how-to articles linked from each guide step when you are ready to build.