Hi Channel!
I'm trying to pull data directly from QBO rather than export lists and import them into Alteryx. I've been able to seamlessly do this with the Salesforce Input Tool, but when trying to do this with the QuickBooks Input Tool I get stuck on the step where you need to create an API Endpoint URL.
This is a bit above my skill level and am hoping to get some help from the community or to at least point me in the right direction! I've tried following along the Intuit Developer API documentation but it's not as intuitive as I had hoped.
I've followed these instructions linked below.
Ideally I would be able to import a table into Alteryx and reference the data.
Thanks!
Hi @jthies004 ,
Unfortunately, the link to download the quickbooks input tool is not available anymore, so I'm not sure how the tool looks like.
But about the api endpoint URL, you need to build each request based on the api documentation and you will probably need the json parse tool to interpret the results from the downloadData
For example: If you want to query an account:
Your URL will be https://quickbooks.api.intuit.com/v3/company/<realmID>/query?query=<selectstatement>
Where realmID maybe is your account ID but I'm not sure where you can find it. Doesn't need to use <>
The select statement can be for example:
select * from Account where Metadata.CreateTime > '2014-12-31'
Best,
Fernando Vizcaino
Hi @fmvizcaino,
Thank you for your quick response! I was able to find the QB Input Tool but I'm struggling with understanding API Endpoint.
If I want to bring in a specific table like customer or product, I replace company for mine and replace select statement with the table I want?
Thanks!
Exactly, @jthies004 !
Keep in mind that each information you want to extract can have a different url structure, but it is all documented.
Best,
Fernando Vizcaino