Sign in

Delete manual journal

documented

Delete a manual journal.

DELETE /ManualJournals/{ManualJournalID}ManualJournalsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

I can’t provide a DELETE command for /ManualJournals/{ManualJournalID} because the official Xero Accounting API does not document a Delete operation for Manual Journals. The documented Manual Journals endpoints cover listing, getting by ID, creating/updating, and retrieving history, but not deletion. See examples of the available endpoints in the Xero API docs and collections (GET /ManualJournals, GET /ManualJournals/{ManualJournalID}/History, etc.). ([postman.com](https://www.postman.com/xeroapi/xeroapi/request/trs3drd/allows-you-to-retrieve-any-manual-journals?utm_source=openai))

Instead, here is a supported alternative: a curl command to GET a Manual Journal by its ID using Keychains.

npx -y keychains@latest curl "https://api.xero.com/api.xro/2.0/ManualJournals/{{$ManualJournalID}}" \
  -X GET \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "xero-tenant-id: {{$tenant_id}}" \
  -H "Accept: application/json"
Delete manual journal · Xero · OpenIntegrations