intuit-partner-platform

Bill Filtering only returns default 10 sorted records without doing any filtering from QBO

三世轮回 提交于 2019-12-11 15:06:51
问题 Please find the below code for for filtering bills, which returns only 10 sorted records even I passed the resultperpage>10. public IEnumerable<Intuit.Ipp.Data.Qbo.Bill> FilterBills(DataServices dataServices, int startPage, int resultsPerPage, DateTime After, DateTime Before) { Intuit.Ipp.Security.OAuthRequestValidator oAuthRequestValidator = ((Intuit.Ipp.Security.OAuthRequestValidator)dataServices.ServiceContext.RequestValidator); OAuthConsumerContext consumerContext = new

Need list of cancelled/voided/deleted transactions

纵饮孤独 提交于 2019-12-11 14:16:04
问题 I have an ETL set up to pull SalesReceipts, Invoices, and CreditMemos into our own data warehouse. However, if a transaction in the past has been voided/deleted this will cause our numbers to be off. I have not found a way to get a list of invalidated transactions and I'd prefer not to have to pull all transactions for all time for each invocation of the ETL. More details: Our data is in QBO and I am using the Java API provided by Intuit. I have reviewed the API (both the online endpoint API

How to import Other Payroll Item data

倖福魔咒の 提交于 2019-12-11 13:56:41
问题 I am trying to find documentation that details how to import 'Other Payroll Items' data to Quickbooks Payroll. I would like to import quantities for non-taxable items such as mileage and lodging. So far, I have not been able to find any information on these processes. My target is Quickbooks Desktop with the Web Connector. Does anyone have experience with this and could give me a few pointers, maybe just a place in the SDK documentation I should be using to get started? Third party tools

Intuit.Ipp.Data.Qbo.CustomerQuery query with & in the name

假如想象 提交于 2019-12-11 13:12:44
问题 How do you use Intuit.Ipp.Data.Qbo.CustomerQuery to query a name like: Tom & Jerry's This case has 2 special characters that are causing the query to fail. One being & and the other being '. I've tried to use Uri.EscapeDataString and it doesn't work. Any advice? 回答1: The SDK does not encode the ampersand correctly, so you will need to use DevDefined and deserialize the response with the SDK. Code sample: https://gist.github.com/IntuitDeveloperRelations/6024616 回答2: you would need to xml

Can a single company really not use QB API?…Semi Rant

∥☆過路亽.° 提交于 2019-12-11 12:56:56
问题 We need to integrate our custom in house applications with quickbooks. When I saw the QB REST API and the IPP I was like "Yay!!! Finally Qb offered us something useful!". It was a happy moment..... Then I read this in the FAQ I want to integrate my custom (non-SaaS, single-tenant) solution with QuickBooks API. Can I do this? Not today, but we are considering it. What? Why? were paying customers, we have integration problems....largely caused by YOU intuit! You already built it...I assume it

Under what situation would the discoverAndAddAccountsResponse method in IPP AggCat be used?

荒凉一梦 提交于 2019-12-11 12:39:14
问题 I understand to verify that a bank is not asking more than one set of MFA questions, you must check the results from each discoverAndAddAccounts call, but IPP AggCat for .Net also offers the discoverAndAddAccountsResponse method. Can this method also pass back the new Challenge/Response questions? If so, how, and if not, when would this method ever be used? Thanks for any help in advance. 回答1: The latest release, 1.3.0, has an additional overload to DiscoverAndAddAccountsResponse that passes

QBFC: Custom Reporting - Filter by custom field

痴心易碎 提交于 2019-12-11 09:12:53
问题 In reference to a previous question of mine: qbfc CustomerQuery based on email address? Is it possible to create a custom detail report of customers, and using a custom field to "filter" the report. I must admit, I am not really clued in on CustomDetailReports, as I have no need for implementing them, and never had. It does however look like its supposed to do just what it says, a custom report feeding you info form quickbooks? What I am attempting to do, is get a list of customers in a

Quick Book Error You and sam working on this at the same time

早过忘川 提交于 2019-12-11 05:59:11
问题 I am trying to update the data in quick book while updating i am getting exception as follows " You and sam were working on this at the same time. sam finished before you did, so your work was not saved. " I have attached the screenshot for your reference. Please let me know if you need any detailed explanation about this issue. Any help would be appreciated. Code oBillHeader.VendorId = new IdType() { idDomain = idDomainEnum.QBO, Value = vendorID }; oBillHeader.VendorName = vendorNameVal;

QBOv3 XML Validation Fault

痞子三分冷 提交于 2019-12-11 03:47:59
问题 I'm trying to send a couple of quickbooks queries together in a batch request. I've followed the formatting that Intuit gives here https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/020_key_concepts/00700_batch_operation but I keep getting a ValidationFault. I'm not sure what's causing the error, so any help would be greatly appreciated. Thanks! XML: <IntuitBatchRequest xmlns="http://schema.intuit.com/finance/v3"> <BatchItemRequest bId="1" > <Query query="Select * from

Intuit Anywhere script reloading jQuery

爱⌒轻易说出口 提交于 2019-12-11 03:27:36
问题 Our application loads jQuery 1.10.2 and then loads https://appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js from Intuit. The anywhere script is adding <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script> to the head and reloading jQuery. This is wiping the namespace and wrecking much of our code. Shouldn't the script see that jQuery is already loaded? How do we prevent jquery from being reloaded? Thanks, Forrest 回答1: EDIT: The