What is the Real QuickBook Online API?

I have been doing this for a while, and I really cannot find the right solution. I found this PHP API that should help solve all these problems, but it does not work - or it is not clear how to configure it correctly.

This is a PHP api, I tried to use https://code.intuit.com/sf/frs/do/viewRelease/projects.php_devkit/frs.php_devkit.latest_sources

I was able to get OAUTH to connect on the ipp developer site, so nice. But I can not get any data.

I'm just trying to automate some of the processes for my company with our quick books - online store integration.

Basically, I just don't understand what to do to get a list of PO addresses from online blogs. Can anyone shed some light on this?

Thanks!

+4
source share
4 answers

This code works very well - you are just doing something wrong. (I know - I am the developer of this code, and I work with it every day, doing exactly what you are looking for).

With that said, since you did not post any error codes or messages, no one can help you.

Post some error messages or code.

Other features:

But I can not get any data.

Why not? What specific error do you get? What does your code look like? What types of data are you trying to get?

I'm just trying to automate some of the processes for my company with our quick books - online store integration.

If everything you build is a one-time / user integration for your company, then you started from the wrong path. Intuit Anywhere (OAuth material) is for SaaS applications only (see Frequently Asked Questions here: https://ipp.developer.intuit.com/0010_Intuit_Partner_Platform/0025_Intuit_Anywhere/0080_FAQ , in particular: "I want to integrate my regular (non-SaaS, single-user) solution with Intuit Anywhere. Can I do this? ").

You should use qbXML instead. Download STABLE: QuickBooks PHP DevKit

And look at docs / example_online_edition.php

The rest of the Intuit documentation for qbXML (not Intuit Anywhere) is here: http://developer.intuit.com/qbsdk-current/common/newosr/index.html

Basically, I just don't understand what to do to get a list of PO addresses from online books.

Unfortunately, you will find that sample purchase orders are not supported by EIFER from the two APIs available for QuickBooks Online.

All Intuit QuickBooks Online APIs have always been incomplete. Neither supports purchase orders. If you really need purchase order support, switch to QuickBooks for Windows instead.

If you need additional help / problems, MAKE SURE that you publish your code and any error messages so that we can help you in the future.

+7
source

Try this dev kit:

https://github.com/consolibyte/quickbooks-php

It was a good sdk that worked very well for me.

+1
source

It doesn't seem like it should be too complicated with curl (1) or anything else. https://developer.intuit.com/apiexplorer?apiname=V3QBO#PurchaseOrder

0
source

Quickbooks seem to leave their links faster than they create. I am trying to create a SAAS application with the QuickBooks API, cannot find the SAAS property mentioned above, and the link is dead.

Does anyone know if the two different APIs mentioned above were combined?

0
source

All Articles