quickbooks-online

Quickbooks Online filtering with Signpost returns 401 error

痴心易碎 提交于 2019-12-08 12:15:46
问题 I was able to get Signpost work with QuickBooks Online using HttpPost. However when I tried querying with filters, I got 401 error every time. After contacting support, I was informed that this is a known bug. They pointed me to an example in C#. I am using Signpost oauth library in Java. The C# example doesn't make sense to me since I don't have those functions available in Signpost. Also I don't understand what exactly I need to do. One side note: I had to use HttpClient for this content

Integration Quickbook online api to rails app

ⅰ亾dé卋堺 提交于 2019-12-08 07:28:55
问题 I am integrating rails application to Quickbooks online using API. Use gem Quickbooks-ruby But want to add discount, add taxes into invoice but not success even not found how to pass in API. 回答1: invoice = Quickbooks::Model::Invoice.new invoice.customer_id = 1 invoice.txn_date = Date.civil(2014, 3, 27) invoice.doc_number = "001" transaction_tax = Quickbooks::Model::TransactionTaxDetail.new # Point to a saved tax code in QBO, e.g. this points to id = 2, # which is a NYC tax code saved on QBO

Quickbooks PHP SDK OAuth2, How to get and store access / refresh tokens

僤鯓⒐⒋嵵緔 提交于 2019-12-08 05:06:17
问题 I have a Magento 2.3 store that I'm trying to sync some data to Quickbooks Online. I've created a QBO App but this is my first time using oauth and I'm a bit confused on how to store and use the access / refresh tokens. According to Quickbooks doc I need to store the latest refresh token: Each access token can only be valid for an hour after its creation. If you try to make an API call after an hour with the same access token, the request will be blocked by QBO. That is what refresh token

Integration Quickbook online api to rails app

隐身守侯 提交于 2019-12-08 02:43:29
I am integrating rails application to Quickbooks online using API. Use gem Quickbooks-ruby But want to add discount, add taxes into invoice but not success even not found how to pass in API. invoice = Quickbooks::Model::Invoice.new invoice.customer_id = 1 invoice.txn_date = Date.civil(2014, 3, 27) invoice.doc_number = "001" transaction_tax = Quickbooks::Model::TransactionTaxDetail.new # Point to a saved tax code in QBO, e.g. this points to id = 2, # which is a NYC tax code saved on QBO account = 10% sales tax transaction_tax.txn_tax_code_id = 2 transaction_tax.total_tax = 134.10 invoice.txn

Issues with special characters in QBO API v3 .NET SDK

只愿长相守 提交于 2019-12-08 00:40:59
问题 I'm using the .NET SDK to import customers and transactions from another system that accepts UTF-8 encoding in their data, and am having a lot of trouble with special characters. Is there a comprehensive list of (a) what characters need to be escaped (like apostrophe), and (b) what characters are simply not allowed in QBO (like colon)? All I can find in the online doc is "use backslash to escape special characters like apostrophe". OK, what about ampersand, em dash, en dash, grave accent,

Issues with special characters in QBO API v3 .NET SDK

南笙酒味 提交于 2019-12-06 11:50:55
I'm using the .NET SDK to import customers and transactions from another system that accepts UTF-8 encoding in their data, and am having a lot of trouble with special characters. Is there a comprehensive list of (a) what characters need to be escaped (like apostrophe), and (b) what characters are simply not allowed in QBO (like colon)? All I can find in the online doc is "use backslash to escape special characters like apostrophe". OK, what about ampersand, em dash, en dash, grave accent, acute accent... you get the idea. This problem affects both queries and inserts which causes all kinds of

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

余生颓废 提交于 2019-12-06 11:19:14
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 to follow First, the SL app has to have elevated privileges. Second, you need to create a COM object

How to access Quickbooks Invoice Line Items using php api

為{幸葍}努か 提交于 2019-12-06 08:36:36
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_MetaData Object ( [_data:protected] => Array ( [CreateTime] => Array ( [0] => 2013-04-02T02:55:30-07:00 )

Create a Test Company Account for QuickBooks Online Development and QA Testing

亡梦爱人 提交于 2019-12-06 05:11:18
问题 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

Quickbooks Online Accounting - How to add multiple line items in an invoice?

放肆的年华 提交于 2019-12-06 04:48:50
With the following code I want to create multiple line items to show up in a new invoice. How do I create multiple line items in my invoice, corresponding to my multiple order items from my custom application? Running the following code with OrderItems having 4 items in order shows only one item in the invoice. Price and name is correct but number of products are not. Only one shows up. I believe this line is the correct line to add line items. But does it actually add line item(s)? invoice.Line = new Line[] { invoiceLine }; Code var orderItems = order.OrderItems; foreach (var orderItem in