Search code examples
phpquickbooksquickbooks-onlineintuit-partner-platform

How to Add Journal Entry in QuickBooks Online using There SDK(PHP)


In my project I am integrating QuickBooks Online by PHP. Here I want to add journal entry. So I have downloaded the SDK for PHP. And able to connect QuickBook Online and successfully add some customer.

But my real requirement is adding Journal Entry, but there is no example for journal entry. So I am wondering how I can add Journal using that SDK? Which class I need to use for Journal Entry? And How can I pass the journal data?

Please help me.

Thanks in Advance


Solution

  • I searched the sdk and found, there is a class IPPJournalEntry which will be used here for journal entry add. Along with this we need two more classes IPPLine, IPPJournalEntryLineDetail.

    Thanks