-1

I connected quickbook through the PHPAggCat.

I created the token and key for Customer Account Data.

I created the test account and i used the test customer key and authentication token.

It works but while i am running it, i am getting the sample company name. And it showing around 2000 companies. I dont know where i am getting this.

I also tried with real account details but i am getting same result.

Also i dont know how to fetch the details of customer, invoice, payment, purchaseorder, account using PHPAggCat code.

And i used the path url financialdatafeed.platform.intuit.com . This comes from PHPAggCat.

nimisha shrivastava
  • 2,357
  • 2
  • 16
  • 31

2 Answers2

2

AggCat and QuickBooks are two completely different APIs/services.

  • AggCat is for accessing financial data (bank statements, checking accounts, etc.) from financial institutions (e.g. Bank of America, Wells Fargo, etc.). It has NOTHING to do with QuickBooks itself at all.
  • The QuickBooks API (Intuit Anywhere, Intuit Partner Platform) are for accessing data from QuickBooks Online and QuickBooks for Windows.

It sounds like you're working with the wrong API.

This is where you should be starting if you want to work with QuickBooks:

Although Intuit doesn't officially support PHP, we have a working open-source QuickBooks PHP library over here:

With a quick-start guide specifically geared towards Intuit Partner Platform / QuickBooks over here:

Nightly builds of the code available here:

And support forums available here:

(and, of course, we also watch and answer questions on StackOverflow)

Keith Palmer Jr.
  • 27,666
  • 16
  • 68
  • 105
1

As mentioned in -Quickbook Intergration Using PHP

AggCat and QB are two different sets of API service.

customer, invoice, payment, purchaseorder, account - All these entities are available in Quickbook APIs. AggCat is nowhere related with these.

https://github.com/pleslie/phpaggcat - This is for AggCat Service. Not for Quickbook online.

For integration with Quickbook Online, please refer the following docs

Thanks

Community
  • 1
  • 1
Manas Mukherjee
  • 5,270
  • 3
  • 18
  • 30
  • I checked this but i didnt get any sample code for PHP. If possible can you send me the link for php sample code. – user2462414 Sep 17 '13 at 05:40
  • Then how can i integrate quickbook in my website. Is there any other way for integrating quickbook using php. If possible, Please suggest me some link – user2462414 Sep 17 '13 at 07:01
  • You need to use some open source PHP OAuth lib to consume the REST Endpoint service. I don't have any handy code snippet for PHP. If possible you can refer Java/.net code which is available in the link mentioned above. Thanks. – Manas Mukherjee Sep 17 '13 at 07:17
  • Is it possible to connect the quickbook api using php soap? – user2462414 Sep 17 '13 at 10:09
  • No.. Quickbooks APIs are REST based. – Manas Mukherjee Sep 17 '13 at 11:28
  • You can refer the following link - http://stackoverflow.com/questions/18838132/how-to-create-a-quickbooks-online-request-signature-in-php/18842032#18842032 . Intuit will provide a php devkit soon(But I don't know the exact release date).Thanks – Manas Mukherjee Sep 17 '13 at 12:41