intuit-partner-platform

IPP AppCenter disconnect doesn't redirect to “disconnect landing page”

可紊 提交于 2019-12-02 06:24:52
问题 According to the Intuit docs https://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started/0030_integrate_your_app/disconnecting_from_quickbooks/0020_disconnecting_intuit_app_center_(implement_the_disconnect_landing_page) and the tech review checklist https://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started/0040_publishing_your_app/0010_reviewing_the_requirements_checklist when I disconnect from the app center is should be redirecting or directing to the

Setting IsActive for Employee through qbXML

雨燕双飞 提交于 2019-12-02 03:58:49
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 Interop.QBXMLRP2.IRequestProcessor4.ProcessRequest(String ticket, String inputRequest) at PayrolImport

IPP AppCenter disconnect doesn't redirect to “disconnect landing page”

烂漫一生 提交于 2019-12-01 23:06:01
According to the Intuit docs https://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started/0030_integrate_your_app/disconnecting_from_quickbooks/0020_disconnecting_intuit_app_center_(implement_the_disconnect_landing_page) and the tech review checklist https://developer.intuit.com/docs/0025_quickbooksapi/0010_getting_started/0040_publishing_your_app/0010_reviewing_the_requirements_checklist when I disconnect from the app center is should be redirecting or directing to the "Disconnect Landing Page" I've specified in my "Manage Application > App Details" configuration. However, when I

Relating Entires from QBSDK to IPP?

谁说我不能喝 提交于 2019-12-01 21:59:13
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? 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 decent answer. A typical ID in QuickBooks looks like this: 80000001-1296949588 The first portion is the

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 to QuickBooks using API

戏子无情 提交于 2019-11-29 20:19:37
I need some guidelines here. I am creating an online booking system for my client that interfaces with QuickBooks on their internal network (desktop QuickBooks, not online). Do I need to go the full "publish app" route? I do not wish to sell this app in the marketplace. This is merely a custom booking system designed and paid for by the client. It seems like I need to "publish" the app in the marketplace for them to be able to use it. Are there ways around this? Update 06/23/2015 - To connect to a desktop QuickBooks installation the SDK with the Web Connector is now the only recommended

aggcat php sample is not working

流过昼夜 提交于 2019-11-29 11:35:42
I'm using the following configuration: Apache/2.2.22 (Win32) PHP/5.4.17 When performing php sample I recieve the following error messages: Notice: Undefined offset: 1 in C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\Intuit_Original\class.aggcatauth.php on line 199 $ResponseKVPairs[$OneKVPair[0]] = $OneKVPair[1]; Notice: Undefined index: oauth_token in C:\Program Files (x86)\Apache Software Foundation\Apache2.2\htdocs\Intuit_Original\class.aggcatauth.php on line 202 $oauth_token = $ResponseKVPairs['oauth_token']; Notice: Undefined index: oauth_token_secret in C:\Program

QuickBooks Online querying with filter returns 401 everytime

回眸只為那壹抹淺笑 提交于 2019-11-29 04:17:06
I've had success creating objects with POST and Content-Type application/xml I've also had success querying using Content-Type application/x-www-form-urlencoded with a blank request body which returns all of the object type depending on which URI I specify. I can also get the same to work with something like PageNum=1&ResultsPerPage=1 in the request body and I have figured out how to incorporate that into the signature so I get a valid response. However no matter how I format it, I cannot get anything other than a 401 response when I try to use a filter (something basic like Filter=FAMILYNAME

how to add invoice or sales receipt quickbooks rest api v3.0

人盡茶涼 提交于 2019-11-29 00:47:22
How can I add an invoice or sales receipt using the QuickBooks API Rest v3? Preferably in .NET. I was interested previously in v2 but apparently that is going to be replaced soon. I can't seem to find any sample code in .NET to add a sales receipt or invoice for version 3. A simple example with minimum data supplied would be appreciated. You can try the following code snippet. public void AddInvoice() { OAuthRequestValidator reqValidator = new OAuthRequestValidator(accessToken, accessTokenSecret, consumerKey, consumerKeySecret); ServiceContext context = new ServiceContext(realmId,