quickbooks-online

cURL error during making API call. cURL Error Number:[60] SSL certificate prob: self signed certificate in certificate chain

依然范特西╮ 提交于 2019-12-24 08:23:22
问题 Good Day, I am new to server settings. I am currently using laravel 5.4 to integrate my quickbooks app on my live server http://qb.dagnum.com/connect but I continue to get this error (1/1) SdkException cURL error during making API call. cURL Error Number:[60] with error:[SSL certificate problem: self signed certificate in certificate chain] I added the package using 'composer require quickbooks/v3-php-sdk'. the server has SSL certificated Installed as well but still my getting the error. my

Create Checks with Quickbooks API

拥有回忆 提交于 2019-12-24 06:45:52
问题 Please help me on writing a check using the QuickBooks online(Qbo) API. I tried to do that but i'm always getting an error saying "Error validating Detail Lines:At least one detail line is required." Sample Code is in Below.. How should I add Lines for Checks. Dim existingChk = New Qbo.Check() Dim existingChks = commonService.FindAll(existingChk, 1, 10).ToList() Dim payment = New Qbo.Payment() Dim payments = commonService.FindAll(payment, 1, 10).ToList() Dim qboCheck = New Intuit.Ipp.Data.Qbo

Receiving a SystemFault when I query Item

江枫思渺然 提交于 2019-12-23 19:51:54
问题 Using V3 when I attempt to query for Items I receive a generic error with a SystemFault type. I am attempting to perform Select * From Item Where Name = 'Something' This does work in the API Explorer, and I believe I am re-creating the HTTP request accurately. My HTTP GET is: GET /v3/company/redacted/query?query=Select%20*%20From%20Item%20Where%20Name%20=%20'Something'%20STARTPOSITION%201%20MAXRESULTS%2020 HTTP/1.1 Accept application/xml Accept-Encoding gzip;q=1.0,deflate;q=0.6,identity;q=0.3

QuickBooks IPP v3 getting error 3200 when adding Invoice

泪湿孤枕 提交于 2019-12-23 19:22:27
问题 I've been using the QuickBooks PHP DevKit for some time now in production with no issues. However, recently I've been getting the following error from my create_invoice ajax script when I spit out: if($resp = $InvoiceService->add($Context, $realm, $Invoice)){ //create invoice code here } else { echo $InvoiceService->lastError(); } I get the following error: 3200: [message=ApplicationAuthenticationFailed; errorCode=003200; statusCode=401, ] The only documentation I can find about this error is

How to access Quickbooks Invoice Line Items using php api

时光毁灭记忆、已成空白 提交于 2019-12-22 23:57:32
问题 am trying to access the line items of the invoice in quickbooks using php api, so that i could do some manipulations on it..... am able to get the invoice data when i do this... <?php $Invoice = $InvoiceService->findById($Context, $realmID, $InvoiceID); pr($Invoice); ?> the result is obtained as follows QuickBooks_IPP_Object_Invoice Object ( [_data:protected] => Array ( [Id] => Array ( [0] => {QBO-52} ) [SyncToken] => Array ( [0] => 13 ) [MetaData] => Array ( [0] => QuickBooks_IPP_Object

How do i add (reference) Quick book's dll to silverlight project?

北慕城南 提交于 2019-12-22 18:15:56
问题 I am using silverlight project.In this i have to use Quick books SDK (QBFC). But problem is silverlight not allowing other assembles. Because : Silverlight uses a different runtime and a subset of the regular .Net framework, which is why we can only reference Silverlight libraries. So we cannot use Quick book dlls as a reference to silver light. But by using web service or RIA service we can solve tha problem. Let me know is this possible.. if yes how can i do... if not which approach i have

Interacting with QuickBooks Online V3 API

…衆ロ難τιáo~ 提交于 2019-12-22 14:08:25
问题 I'm writing a web application (that is not to be published by Intuit on their App Center thing) to interact with QuickBooks Online (QBO) for syncing purposes, using VB.NET and ASP.NET. I'm having a hard time understanding how to do this exactly or where to start. What I understand this this: User accesses your web application and the "Connect to QuickBooks" button (that Intuit requires for In-App authorization) is displayed. Before the button is clicked you send a HTTP request to get OAuth

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

Quickbook Intergration Using PHP

喜夏-厌秋 提交于 2019-12-16 18:03:07
问题 I want to integrate Quickbook using php. I downloaded php coding from https://github.com/pleslie/phpaggcat/ Also i downloaded http://simplesamlphp.org/download and OAuth files. I have linked Private key and certificate . And also i have sepecified the OAUTH_CONSUMER_KEY and OAUTH_SHARED_SECRET I want to specify the SAML_IDENTITY_PROVIDER_ID I dont know where i get this PROVIDER ID. Code : define('SAML_IDENTITY_PROVIDER_ID', 'PLEASE FILL IN'); Can anyone tell, where i get this ID? 回答1:

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,