intuit-partner-platform

Setting IsActive for Employee through qbXML

穿精又带淫゛_ 提交于 2019-12-20 03:54:13
问题 I keep the following error when adding or modifying Employees with QbXml: QuickBooks found an error when parsing the provided XML text stream. I have tried true/false (which is the values that it returned), yes/no, and 1/0; none of which seem to work. Is it possible to set the IsActive field for employees? Am I missing something? Thanks! Exception thrown was: {System.Runtime.InteropServices.COMException (0x80040400): QuickBooks found an error when parsing the provided XML text stream. at

Query for All Invoices With Open Balances using QuickBooks Online (QBO) Intuit Partner Platform (IPP) DevKit

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-19 04:18:08
问题 I am trying to Query for all invoices with open balances using IPP but I keep on getting 0 results back. Am I doing something wrong in code? Here is my C# code snippet that I am trying to do with the applied Filtering InvoiceQuery qboInvoiceQuery = new InvoiceQuery(); int iMaxPageNumber = QUERY_MAX_PAGE_NUMBER; // A Constant with the Maximum Page Number allowed in a query int iResultsPerPage = QUERY_MAX_NUM_PER_PAGE_INVOICE; // A Constant with the Maximum Results per page // Paging

InvalidTokenException: Unauthorized-401

萝らか妹 提交于 2019-12-17 21:22:02
问题 I am converting a application to use IPP .net API V3. I have already built all the OAuth and saved the token info. Trying to make connection but always get error. I have checked and recheck all the token data and it appears correct. Where did I go wrong? I am using the DevDefined for OAuth and Intuit.Ipp from NuGet (IPP API V3). I am using my test customer token info but noticed the base URL (from the IPP library) is https://quickbooks.api.intuit.com/. Should that still work? Dim accessToken

How to call API (Oauth 1.0)?

陌路散爱 提交于 2019-12-17 12:38:24
问题 I am trying to call this API (Oauth1.0 standard): https://appcenter.intuit.com/api/v1/Connection/Reconnect And what I am doing is : (It am working on java) Base64Encoder baseEncoder = Base64Encoder.getInstance(); CloseableHttpClient httpclient = HttpClients.createDefault(); HttpGet httpGet = new HttpGet("https://appcenter.intuit.com/api/v1/connection/reconnect"); StringBuilder headerReq = new StringBuilder(); headerReq.append("OAuth "); headerReq.append("oauth_token=\"").append(OAUTHTOKEN)

Caused By: java.lang.NoClassDefFoundError: org/apache/log4j/Logger

浪子不回头ぞ 提交于 2019-12-17 10:39:13
问题 I've got an interesting problem in which the org.apache.log4j.Logger class is not found during runtime. I'm trying to get authorized and that is where it's failing: OAuthAuthorizer oauthAuthorizer = new OAuthAuthorizer(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET, SAML_PROVIDER_ID, userId); I'm using JDeveloper 11.1.1.6. Here is what I know: I've looked in my UI.war/WEB-INF/lib directory and I see the log4j-1.2.17.jar there. The class complaining about it is org.opensaml.xml.XMLConfigurator

Unable to create(POST) objects (Account, customer…) on QB Windows using IDS and Sync Manager

[亡魂溺海] 提交于 2019-12-14 04:00:06
问题 Here I am provideing you the complete scenario where I am getting the error while posting request for creating a new account. I am using Intuit OAuth Access and OAuth API console for testing (Using all security tokens).(https://appcenter.intuit.com/Playground/OAuth) And the URL and request: URL: https://services.intuit.com/sb/account/v2/570357960 Method : Post Format: XML/JSON Request: <?xml version="1.0" encoding="UTF-16"?><Add xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd=

Where to add journal entry line details in a line object for QuickBooks Online

Deadly 提交于 2019-12-14 02:00:46
问题 I have been working on trying to send a journal entry (JE) to QBO and I can't quite get a grasp on how to create the object completely. So I have my overall JE object and set the base values in that. Then, in each JE object there is an array of Line objects that correspond to each line in the JEs. Each line then has a DetailType that needs to be set to JournalEntryLineDetail and then you are supposed to create JournalEntryLineDetail object that houses more information for the line. However,

Upload File to Quickbooks online with IDS V3

我的未来我决定 提交于 2019-12-13 12:43:00
问题 I would like to upload a file to QuickBooks Online using IDS V3. I followed the steps described here https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/020_key_concepts/attachments. Here is my source code URL url = new URL("https://quickbooks.api.intuit.com/v3/company/My_company_ID/upload"); HttpURLConnection request = (HttpURLConnection) url.openConnection(); request.setDoOutput(true); request.setRequestMethod("POST"); HttpParameters para = new HttpParameters(); //String

Quickbooks IPP v3 sales tax issue

徘徊边缘 提交于 2019-12-13 12:20:04
问题 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

How Do You Access Bank Deposits in the QuickBooks Online API?

橙三吉。 提交于 2019-12-13 10:24:43
问题 I'm getting started with the QuickBooks Online API, and between the documentation and Intuit's API Explorer, I can't seem to figure out how to query for bank deposits. I thought it would be in journal entries, but it's not there. I'm looking for simple deposits that are categorized to an income account. 回答1: Deposits are not supported in QBO V3. I see you have already raised the query on our community. 回答2: While I can't pull down the link in Keith Palmer — Consolibyt's response to this