Prerequisites
Before you start, complete the steps in the CLI Quickstart:- The CLI is installed and on your
PATH. - You’re authenticated (
dualentry auth login) or haveX_API_KEYset for CI/CD. - You have read access to journal entries.
Steps
Step 1 - List journal entries for the month:--start-date and --end-date flags are confirmed on journal-entries. This returns every journal entry booked in March.
Step 2 - Fetch all pages if the list is long:
--all fetches every page so you don’t miss anything, which is important during close when completeness matters.
Step 3 - Spot-check a specific entry:
JE-ID with the ID from your list. This pulls the full detail (debits, credits, accounts, memo, posting date) for a single journal entry so you can verify it’s correct.
Step 4 - Export the full month for the workpaper file:
Combining
--all with --format json gives you a complete, machine-readable export. This is the fastest way to pull data out of DualEntry for external analysis.Tips
- Combine
--allwith JSON for complete exports: don’t assume the first page is everything, and compare.items | lengthagainst.countif you need to be sure. --searchworks on every resource: it is the quickest way to narrow a list before adding more specific filters.