Deprecated
V2 - Deprecation of journal_id on transactions List and Show
August 22nd, 2025 by Integrations Squad
We’ve deprecated the journal_id field in the transactions response. Use the new journal object instead, which includes id and url for the journal details.
{
id: 10,
...
journal_id: 42, // <============ DEPRECATED
journal: { // <============ NEW REPRESENTATION OF JOURNAL
id: 42,
url: "https://app.pennylane.com/api/external/v2/journals/53"
},
...