intuit-partner-platform

how to add purchase order with QBO rest api v3.0

心不动则不痛 提交于 2019-12-04 20:57:51
I am trying to send a PurchaseOrder created with Intuit .NET SDK v3. I found a suitable example with Invoice: how to add invoice or sales receipt quickbooks rest api v3.0 But I cannot work out what I need to do to make it working for Purchase Order. I am getting BadRequest no matter what properties do I set. DataService commonService = new DataService(context); QueryService<Vendor> accountQueryService = new QueryService<Vendor>(context); Vendor customer = accountQueryService.Where(x => x.Id == "9").FirstOrDefault<Vendor>(); QueryService<Item> itemQueryService = new QueryService<Item>(context);

Quickbooks IPP v3 sales tax issue

坚强是说给别人听的谎言 提交于 2019-12-04 19:23:20
We are building an application using IPP v3 that will sync invoices from our SaaS app to QBOE (and hopefully QBD). The problem are are encountering is with replicating the sales on our invoices with the invoices created in quickbooks. Specifically, our invoices can have line items which are not taxable (each state is different in terms of which items are taxed and at what rate). Also there are many times both state, city and county taxes, some of which apply to some line items and not to others. It appears for the IPP v3 US version, taxes must be global to the invoice? I think that all of this

How to integrate Quickbooks desktop Application with a PHP(web app)?

安稳与你 提交于 2019-12-04 14:04:27
In my application, i want to use php to integrate QuickBooks by PHP. So From a web server(with PHP), I want to call QuickBooks Desktop version App to push data and retrieve data. I am stuck here. I do not know where to start? Someone asked me to start with webconnector. I wonder like other webservices have a URL, we need to push the data to that url and they will do the rest. Is this the same? Or any other process I need to follw? So Please please can any one there to help me out? I want to to know the full process and if any sample code available for the same in php. Requirement: 1. My app is

Create a Test Company Account for QuickBooks Online Development and QA Testing

本秂侑毒 提交于 2019-12-04 12:50:55
I need to get a number of test accounts (companies) for QuickBooks Online so that we can finish developing and testing our app. We have reached out to Intuit in order to try and obtain these and have been told to just use 30-day trials. These periods are too short for our development cycle so we purchased accounts to use. These accounts have been shut off / locked on us and we are just getting vague answers as to why. We would love to know why so that we can stop doing any possible harmful activity, but alas it has been difficult to get any information in regards to that. Our developers are

findAll method of DataService class returns only 100 entities

穿精又带淫゛_ 提交于 2019-12-04 06:36:54
问题 We've successfully migrated our v2 QBO to v3 and after that on the production we got an issue from one of our customers. They have over 100 their customers in QBO account. And they want to copy them into our application. We implemented an import like this: DataService service = getDataService(owner); // obtain DataService via Access Keys List<com.intuit.ipp.data.Customer> customers = service.findAll(new com.intuit.ipp.data.Customer()); for (com.intuit.ipp.data.Customer customer : customers) {

QuickBooks NOT working on Google App Engine

余生长醉 提交于 2019-12-04 05:19:33
问题 I was trying to connect to quickbooks online from google app engine by just running this simple code: OAuthCredentials oauthcredentials = new OAuthCredentials(consumerKey, consumerSecret, accessToken, accessTokenSecret); PlatformSessionContext context = new PlatformSessionContext(oauthcredentials, appToken, PlatformServiceType.QBO, realmID); QBCustomerService customerService = QBServiceFactory.getService(context, QBCustomerService.class); QBIdType idType = new QBIdType(context); idType

Relating Entires from QBSDK to IPP?

坚强是说给别人听的谎言 提交于 2019-12-04 04:43:02
问题 We're currently using the Windows QBSDK to interact with QuickBooks. We're evaluating IPP going forward. However, the QBSDK uses ListID's / TransactionID's to identify objects and IPP uses a different scheme. Is there a way to determine the mapping between the two? 回答1: Asked the same question at IDN and was told there is not away to perform this translation. However, a little bit of assistance from a partner, some careful watching of results between IPP and QuickBooks and I have a fairly

How to pull Deposits from QuickBooksOnline using IntuitAnywhere

二次信任 提交于 2019-12-02 16:22:57
问题 I am attempting to pull all the General Ledger entries from QuickBooksOnline into my C# Asp.net application for a given date range. I have been able to successfully pull Bills, Checks, and JournalEntries that match the Profit and Loss Detail report I'm using for reference. However, I seem to be missing all "Deposit" types from that report. I am pulling data for Invoices and Payments but they are coming back empty for the TxnDates I'm looking for. In case it helps I'm including the Request and

Integrating with QB Desktop products

依然范特西╮ 提交于 2019-12-02 10:34:58
I wrote a QB integration a few years ago that uses the Web Connector to read and write data to and from QB desktop products. It works well but I am not in love with the Web Connector. I am tasked with setting up another QB integration. I was hoping to avoid using the Web Connector this time. There are a few reasons why I am trying to avoid the Web Connector but the main reason is I would like to make this integration work with both Desktop and Online versions of QB. Is it possible to use the Intuit Sync Manager to sync the company data up to Intuit and then just use the standard Online APIs to

Is it possible to select a Tax Agency when creating an invoice?

大憨熊 提交于 2019-12-02 09:07:48
问题 Is there anyway to get at my clients Tax Agencies when creating an invoice? I'm using the C# IPP DevKit against QBO. I don't see it mentioned in the documentation, however I can't imagine I'll be required to hard code all my clients tax tables into my app as that is silly. 回答1: What you're looking for (the list of tax rates) is not really what you're asking for (tax agencies). In any case, this thread answers your question: https://idnforums.intuit.com/messageview.aspx?catid=87&threadid=18930