quickbooks-online

python with Quickbooks Online API v3

梦想与她 提交于 2019-12-04 14:07:44
问题 I need some help implementing a python app that accesses the Quickbooks API. I have successfully written several apps that use APIs, but once we get into the OAuth world, I get a bit lost. At any rate, I found the quickbooks-python wrapper here: https://github.com/troolee/quickbooks-python but there are zero examples of working code showing how to implement properly. I imagine that a more experienced python programmer could figure out how to make this work without any instructions, but it

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

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

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

How do I retrieve a PDF of an invoice in QuickBooks API?

独自空忆成欢 提交于 2019-12-02 06:03:52
Using IPP.NET SDK v2.0.1, need to get a PDF version of an invoice as a file, just like it would have been e-mailed to a customer. I have the Invoice object retrieved from the service already. How can this be done? Is is not yet supported in QBO V3 API service. This feature should be included in future API releases. Attachment is not same as what you are looking for. But still, you can have a look if it serves your purpose. https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/020_key_concepts/attachments This feature was available in QBO V2( it is deprecated now). https:/

Response is Unauthorize 401 while connecting to quickbook api when tokens are valid

牧云@^-^@ 提交于 2019-12-01 14:09:13
I am using firefox rest client to make a rest request to quickbook api. below are fields I am using : URL : https://quickbooks.api.intuit.com/v3/company/companyId/vendor/2 Method : POST Header : Content-Type : application/xml OAuth : Consumer key : **** consumer secret : **** Access Token : **** Access token secret : **** I am copying these tokens directly from https://appcenter.intuit.com/Playground/OAuth/IA Strange part is when these tokens are used in data service of IPP V3 Java Devkit, these token works. I have no idea why these tokens will work with data service devkit and not on rest

Response is Unauthorize 401 while connecting to quickbook api when tokens are valid

旧巷老猫 提交于 2019-12-01 12:12:14
问题 I am using firefox rest client to make a rest request to quickbook api. below are fields I am using : URL : https://quickbooks.api.intuit.com/v3/company/companyId/vendor/2 Method : POST Header : Content-Type : application/xml OAuth : Consumer key : **** consumer secret : **** Access Token : **** Access token secret : **** I am copying these tokens directly from https://appcenter.intuit.com/Playground/OAuth/IA Strange part is when these tokens are used in data service of IPP V3 Java Devkit,

Connecting an ASP.NET application to QuickBooks Online Edition

╄→尐↘猪︶ㄣ 提交于 2019-11-30 10:10:04
I am trying to create an ASP.NET page that connects to QuickBooks Online Edition, read a couple of values, and display the results. So far I have downloaded the QuickBooks SDK but I have been unable to find a simple step-by-step example on how to create an asp.net page to connect to QuickBooks Online. The QuickBooks SDK documentation and the SDK itself is very confusing and overwhelming. Anyone know of a simple step by step tutorial on where to get started... or maybe a hint on the very first thing to do. Yishai's answer is partially correct, but not entirely. You can have your ASP .NET