Update Quantity on Hand IPP - quickbooks

I am trying to update the quantity on hand for 1500 QuickBooks Online inventory items. I can pull the 1500 products from the store.
Can this update be done? I see no quantity on hand object:
https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v2/0400_quickbooks_online/item
Can this be done with a batch request:
https://developer.intuit.com/docs/0025_quickbooksapi/0055_devkits/0100_ipp_.net_devkit/0300_asynchronous_calls/2_batch_process
If so, how do I perform an update? The same only shows how to create objects.

Quantity On Hand isn't a stand-alone object. The APIs closely mirror the QuickBooks GUI, and in the QuickBooks GUI you use an "Inventory Adjustment" to update quantity on hand.
For QuickBooks for Windows:
https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/v2/0500_quickbooks_windows/0600_object_reference/inventoryadjustment
For QuickBooks Online:
This operation is not supported in the v2 APIs.

Related

Zendesk report overview API end point

Which API end point can be used to get the Reports Overview data?
I need to have the following data :
New Tickets
Solved Tickets
Open Tickets
Unresolved Tickets
Recently updated tickets
6.Pending Tickets
Also, I would like to pull a leader board of agents by their solved ticket counts and to have an individual report for each agent which shows the above 6 metrics only for the agent.
The view preview count API can be used for your main ones. https://developer.zendesk.com/rest_api/docs/core/views#preview-count
You can do a lot with the other view APIs, and if you don't want to create the view you use previews. Should you need more detail, your fallback is the /tickets.json endpoint to get all the data.

Advanced Pricing data

Is there any way to access the advanced pricing data in QuickBooks (R14)? I have got products with quantity discounts, and I need to pull the data into Excel, either through the SQK (preferred) or at bare minimum an (excel) report. Seems that data access wasn't considered by Intuit for this add-on, unless it's undocumented...
Nope, it is not accessible. No surprise, either.

Fogbugz query to show all of my closed tickets?

I'm new to fogbugz, so I may be making some incorrect assumptions. However, my understanding is that when a ticket is Closed, then the assigned To field becomes "Closed".
How can I search for all of the tickets for which I was the assigned person BEFORE it was closed?
I don't think there is any way to do this via UI / Dashboard, instead you have to use FOGBUGZ API & code to get the data you want. Use the API to get the tickets under milestone and then loop through to get the Assigned To / Developer . That's how we have been playing.
FogBugz XML API Development
FogBugz XML API version 8

Intuit Partner Program Legacy List IDs and Txn IDs

I have a product that uses the QBSDK to integrate with QuickBooks. My data is linked to List IDs and Txn IDs. From running the test apps and looking at the IPP docs it appears the ids returned by the IPP data services are not List IDs or Txn IDs. It also appears that I do not have a way to access those legacy IDs in order to upgrade my data so it references the new IPP generated IDs.
What are the migration options for someone moving from the QBSDK to the IPP?

Quickbooks QBXML and customerAdd

I am working with the Intuit Web Connector.
I am able to add customers using "customerAdd" and by using "openBalance" it creates an invoice.
I have tried everything to make it create an invoice number (the invoice that gets created has no number, just blank).
I would also like to have the item, qty and description.
Is this a job for "invoiceAdd"?
Thanks for looking.
If you're trying to create an Invoice, you should be using InvoiceAdd.
The only time you should be using OpenBalance is if the customer has an outstanding balance that's not the result of an invoice that you'll have in QuickBooks. e.g. if you're migrating from another accounting platform, you might have an open balance for someone when moving from the other system.
Beyond that, you should never be creating customers with an OpenBalance.
Instead, create an actual invoice. Here are some examples:
qbXML examples
InvoiceAdd example

Resources