qbo_api 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c7d9c094381b5e4f4b5215250873f83bcbd7bdd9
4
+ data.tar.gz: a9a592b3f3e9f77099e291ef400c2c33bdc7f0ae
5
+ SHA512:
6
+ metadata.gz: fa7fe3cabae99facf0a976a8b27f23f81fe937f2a7023ce960ed728c8ae6b0ca91b94b68c7dc45b97bb13c6a28fb50ed7a1cabdf3772b6cca9a144fc161dad0f
7
+ data.tar.gz: 0840fbcc89ff267894fa9ab18e54bd20b2d5ed0c130285e10f80f87410676fdc624800fc79c8d0d37037fd60d7a9df6294c99c117204a309a1e81740b41e13e9
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ .env
11
+ .ruby-version
12
+ *.gem
13
+ .rspec
14
+ todo.txt
15
+ *.sess
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.2
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in qbo_api.gemspec
4
+ gemspec
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Christian Pelczarski
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,183 @@
1
+ # QboApi
2
+
3
+ Ruby client for the QuickBooks Online API version 3.
4
+ - Built on top of the excellent Faraday gem.
5
+ - JSON only support.
6
+ - Please don't ask about XML support. [Intuit has stated](https://github.com/ruckus/quickbooks-ruby/issues/257#issuecomment-126834454) that JSON is the primary data format for the QuickBooks API (v3 and beyond). This gem will specialize in JSON only. The [`quickbooks-ruby`](https://github.com/ruckus/quickbooks-ruby) gem has fantastic support for those who favor XML.
7
+ - Features specs built directly against a QuickBooks Online Sandbox via the VCR gem.
8
+ - Robust error handling.
9
+
10
+ ## Ruby >= 2.2.2 required
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's Gemfile:
15
+
16
+ ```ruby
17
+ gem 'qbo_api'
18
+ ```
19
+
20
+ And then execute:
21
+
22
+ $ bundle
23
+
24
+ Or install it yourself as:
25
+
26
+ $ gem install qbo_api
27
+
28
+ ## Usage
29
+
30
+ ### Initialize
31
+ ```ruby
32
+ q = account.qbo_account # or wherever you are storing the OAuth creds
33
+ qbo_api = QboApi.new(token: q.token, token_secret: q.secret, realm_id: q.companyid)
34
+ ```
35
+
36
+ ### Configuration options
37
+ - By default this client runs against a QBO sandbox. To run against the production QBO API URL do:
38
+ ```ruby
39
+ QboApi.production = true
40
+ ```
41
+ - Logging:
42
+ ```ruby
43
+ QboApi.log = true
44
+ ```
45
+ - To change logging target from `$stdout` e.g.
46
+ ```ruby
47
+ QboApi.logger = Rails.logger
48
+ ```
49
+
50
+ ### Create
51
+ ```ruby
52
+ invoice = {
53
+ "Line": [
54
+ {
55
+ "Amount": 100.00,
56
+ "DetailType": "SalesItemLineDetail",
57
+ "SalesItemLineDetail": {
58
+ "ItemRef": {
59
+ "value": "1",
60
+ "name": "Services"
61
+ }
62
+ }
63
+ }
64
+ ],
65
+ "CustomerRef": {
66
+ "value": "1"
67
+ }
68
+ }
69
+ response = qbo_api.create(:invoice, payload: invoice)
70
+ p response['Id'] # => 65
71
+ ```
72
+
73
+ ### Update
74
+ ```ruby
75
+ customer = {
76
+ DisplayName: 'Jack Doe',
77
+ PrimaryPhone: {
78
+ FreeFormNumber: "(415) 444-1234"
79
+ }
80
+ }
81
+ response = qbo_api.update(:customer, id: 60, payload: customer)
82
+ p response.fetch('PrimaryPhone').fetch('FreeFormNumber') # => "(415) 444-1234"
83
+ ```
84
+
85
+ ### Delete (only works for transaction entities)
86
+ ```ruby
87
+ response = qbo_api.delete(:invoice, id: 145)
88
+ p response['status'] # => "Deleted"
89
+ ```
90
+
91
+ ### Search with irregular characters
92
+ ```ruby
93
+ name = qbo_api.esc "Amy's Bird Sanctuary"
94
+ response = qbo_api.query(%{SELECT * FROM Customer WHERE DisplayName = '#{name}'})
95
+ ```
96
+ ### Get an entity by its id
97
+ ```ruby
98
+ response = qbo_api.get(:customer, 5)
99
+ p response['DisplayName'] # => "Dukes Basketball Camp"
100
+ ```
101
+
102
+ ### Respond to an error
103
+ ```ruby
104
+ customer = { DisplayName: 'Weiskopf Consulting' }
105
+ begin
106
+ response = qbo_api.create(:customer, payload: customer)
107
+ rescue QboApi::BadRequest => e
108
+ if e.message =~ /Another customer already exists with this name/
109
+ # Query for Id using DisplayName
110
+ # Do an qbo_api.update instead
111
+ end
112
+ end
113
+ ```
114
+
115
+ ### Import/retrieve all
116
+ ```ruby
117
+ # retrieves all customers
118
+ qbo_api.all(:customers) do |c|
119
+ p "#{c['Id']} #{c['DisplayName']}"
120
+ end
121
+
122
+ # retrieves all vendors by groups of 5
123
+ qbo_api.all(:vendor, max: 5) do |v|
124
+ p v['DisplayName']
125
+ end
126
+
127
+ # retrieves all customers by groups of 2 using a custom select query
128
+ where = "WHERE Id IN ('5', '6', '7', '8', '9', '10')"
129
+ qbo_api.all(:customer, max: 2, select: "SELECT * FROM Customer #{where}") do |c|
130
+ p c['DisplayName']
131
+ end
132
+ ```
133
+
134
+ ### What kind of QuickBooks entity?
135
+ ```ruby
136
+ p qbo_api.is_transaction_entity?(:invoice) # => true
137
+ # Plural is supported as well
138
+ p qbo_api.is_transaction_entity?(:invoices) # => true
139
+ p qbo_api.is_transaction_entity?(:customer) # => false
140
+ p qbo_api.is_name_list_entity?(:vendors) # => true
141
+ ```
142
+
143
+ ## Spin up an example
144
+ - git clone git://github.com/minimul/qbo_api
145
+ - cd qbo_api
146
+ - Create a `.env` file
147
+ - DO NOT check in your `.env` file
148
+ ```ruby
149
+ export QBO_API_CONSUMER_KEY=<Your QuickBooks apps consumer key>
150
+ export QBO_API_CONSUMER_SECRET=<Your QuickBooks apps consumer secret>
151
+ ```
152
+ - Goto `http://localhost:9393`
153
+ - Use the `Connect to QuickBooks` button to connect to your QuickBooks sandbox, which you receive when signing up at [https://developer.intuit.com](https://developer.intuit.com).
154
+ - After successfully connecting to your sandbox run:
155
+ - `http://localhost:9393/customer/5`
156
+ - You should see "Dukes Basketball Camp" displayed
157
+ - Checkout the example (`example/app.rb`) code to see what is going on.
158
+
159
+ ## Contributing
160
+
161
+ Bug reports and pull requests are welcome on GitHub at https://github.com/minimul/qbo_api.
162
+
163
+ #### Running the specs
164
+ - You at least need to add the following values to a `.env` file
165
+ - DO NOT check in your `.env` file
166
+ ```ruby
167
+ export QBO_API_CONSUMER_KEY=<Your QuickBooks apps consumer key>
168
+ export QBO_API_CONSUMER_SECRET=<Your QuickBooks apps consumer secret>
169
+ export QBO_API_ACCESS_TOKEN=<OAuth token against your sandbox>
170
+ export QBO_API_ACCESS_TOKEN_SECRET=<OAuth token secret against your sandbox>
171
+ export QBO_API_COMPANY_ID=<Your sandbox company id>
172
+ ```
173
+ - Note: You can get the access token and secret by using the built-in example.
174
+ - To simply run the specs the values don't have to be valid but the variables do need to be set.
175
+ - `bundle exec rspec spec`
176
+
177
+ #### Creating new specs or modifying existing spec that have been recorded using the VCR gem.
178
+ - All specs that require interaction with the API must be recorded against your personal QuickBooks sandbox.
179
+
180
+ ## License
181
+
182
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
183
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "qbo_api"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,189 @@
1
+ # Logfile created on 2015-10-17 07:04:30 -0400 by logger.rb/47272
2
+ I, [2015-10-17T07:23:50.367086 #10317] INFO -- : #<OmniAuth::AuthHash credentials=#<OmniAuth::AuthHash secret="SdpoeXjEdKEmPG7aqjrKQD1kv1L20xmBnBb99D4h" token="qyprdyYKsdhD0khjanmamS2kc1W1DYOQoHrZt1EWQzkb2WYY"> extra=#<OmniAuth::AuthHash access_token=#<OAuth::AccessToken:0x007fddf9154288 @token="qyprdyYKsdhD0khjanmamS2kc1W1DYOQoHrZt1EWQzkb2WYY", @secret="SdpoeXjEdKEmPG7aqjrKQD1kv1L20xmBnBb99D4h", @consumer=#<OAuth::Consumer:0x007fddf9871368 @key="qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr", @secret="zeLCxbhuZ0xZjfnOVqVaIBZ7cJeUil2Mb5gpOBkY", @options={:signature_method=>"HMAC-SHA1", :request_token_path=>"/oauth/v1/get_request_token", :authorize_path=>"/oauth/authorize", :access_token_path=>"/oauth/v1/get_access_token", :proxy=>nil, :scheme=>:header, :http_method=>:post, :oauth_version=>"1.0", :authorize_url=>"https://appcenter.intuit.com/Connect/Begin", :site=>"https://oauth.intuit.com"}, @http=#<Net::HTTP oauth.intuit.com:443 open=false>, @http_method=:post>, @params={:oauth_token_secret=>"SdpoeXjEdKEmPG7aqjrKQD1kv1L20xmBnBb99D4h", "oauth_token_secret"=>"SdpoeXjEdKEmPG7aqjrKQD1kv1L20xmBnBb99D4h", :oauth_token=>"qyprdyYKsdhD0khjanmamS2kc1W1DYOQoHrZt1EWQzkb2WYY", "oauth_token"=>"qyprdyYKsdhD0khjanmamS2kc1W1DYOQoHrZt1EWQzkb2WYY"}>> info=#<OmniAuth::AuthHash::InfoHash> provider="quickbooks" uid="1292740145">
3
+ I, [2015-10-17T07:40:11.398364 #11020] INFO -- : --- !ruby/hash:OmniAuth::AuthHash
4
+ provider: quickbooks
5
+ uid: '1292740145'
6
+ info: !ruby/hash:OmniAuth::AuthHash::InfoHash {}
7
+ credentials: !ruby/hash:OmniAuth::AuthHash
8
+ token: qyprdK0MZocWqV9u72Cmh1VzyEwXqZcY77P2jf2CqMMDPQnI
9
+ secret: vOqVygKAPRbvgEMuDj3Rq2mgT2jMmApPA73HTId7
10
+ extra: !ruby/hash:OmniAuth::AuthHash
11
+ access_token: !ruby/object:OAuth::AccessToken
12
+ token: qyprdK0MZocWqV9u72Cmh1VzyEwXqZcY77P2jf2CqMMDPQnI
13
+ secret: vOqVygKAPRbvgEMuDj3Rq2mgT2jMmApPA73HTId7
14
+ consumer: !ruby/object:OAuth::Consumer
15
+ key: qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr
16
+ secret: zeLCxbhuZ0xZjfnOVqVaIBZ7cJeUil2Mb5gpOBkY
17
+ options:
18
+ :signature_method: HMAC-SHA1
19
+ :request_token_path: "/oauth/v1/get_request_token"
20
+ :authorize_path: "/oauth/authorize"
21
+ :access_token_path: "/oauth/v1/get_access_token"
22
+ :proxy:
23
+ :scheme: :header
24
+ :http_method: :post
25
+ :oauth_version: '1.0'
26
+ :authorize_url: https://appcenter.intuit.com/Connect/Begin
27
+ :site: https://oauth.intuit.com
28
+ http: !ruby/object:Net::HTTP
29
+ address: oauth.intuit.com
30
+ port: 443
31
+ local_host:
32
+ local_port:
33
+ curr_http_version: '1.1'
34
+ keep_alive_timeout: 2
35
+ last_communicated:
36
+ close_on_empty_response: false
37
+ socket:
38
+ started: false
39
+ open_timeout: 30
40
+ read_timeout: 30
41
+ continue_timeout:
42
+ debug_output:
43
+ proxy_from_env: true
44
+ proxy_uri:
45
+ proxy_address:
46
+ proxy_port:
47
+ proxy_user:
48
+ proxy_pass:
49
+ use_ssl: true
50
+ ssl_context: !ruby/object:OpenSSL::SSL::SSLContext
51
+ cert:
52
+ key:
53
+ client_ca:
54
+ ca_file:
55
+ ca_path:
56
+ timeout:
57
+ verify_mode: 0
58
+ verify_depth:
59
+ renegotiation_cb:
60
+ verify_callback:
61
+ options: -2097019905
62
+ cert_store:
63
+ extra_chain_cert:
64
+ client_cert_cb:
65
+ tmp_dh_callback:
66
+ session_id_context:
67
+ session_get_cb:
68
+ session_new_cb:
69
+ session_remove_cb:
70
+ servername_cb:
71
+ npn_protocols:
72
+ npn_select_cb:
73
+ ssl_session: !ruby/object:OpenSSL::SSL::Session {}
74
+ enable_post_connection_check: true
75
+ sspi_enabled: false
76
+ ca_file:
77
+ ca_path:
78
+ cert:
79
+ cert_store:
80
+ ciphers:
81
+ key:
82
+ ssl_timeout:
83
+ ssl_version:
84
+ verify_callback:
85
+ verify_depth:
86
+ verify_mode: 0
87
+ http_method: :post
88
+ params:
89
+ :oauth_token_secret: vOqVygKAPRbvgEMuDj3Rq2mgT2jMmApPA73HTId7
90
+ oauth_token_secret: vOqVygKAPRbvgEMuDj3Rq2mgT2jMmApPA73HTId7
91
+ :oauth_token: qyprdK0MZocWqV9u72Cmh1VzyEwXqZcY77P2jf2CqMMDPQnI
92
+ oauth_token: qyprdK0MZocWqV9u72Cmh1VzyEwXqZcY77P2jf2CqMMDPQnI
93
+
94
+ I, [2015-10-17T17:53:42.892748 #36877] INFO -- : <?xml version="1.0" encoding="UTF-8" standalone="yes"?><IntuitResponse xmlns="http://schema.intuit.com/finance/v3" time="2015-10-17T14:53:42.811-07:00"><QueryResponse startPosition="1" maxResults="18"><Item domain="QBO" sparse="false"><Id>3</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:36:03-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:47-07:00</LastUpdatedTime></MetaData><Name>Concrete</Name><Description>Concrete for fountain installation</Description><Active>true</Active><FullyQualifiedName>Concrete</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>4</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:41:38-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:41:38-07:00</LastUpdatedTime></MetaData><Name>Design</Name><Description>Custom Design</Description><Active>true</Active><FullyQualifiedName>Design</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>75</UnitPrice><Type>Service</Type><IncomeAccountRef name="Design income">82</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>6</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:43:14-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:43:14-07:00</LastUpdatedTime></MetaData><Name>Gardening</Name><Description>Weekly Gardening Service</Description><Active>true</Active><FullyQualifiedName>Gardening</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services">45</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>2</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-01T14:42:05-07:00</CreateTime><LastUpdatedTime>2014-10-01T14:42:05-07:00</LastUpdatedTime></MetaData><Name>Hours</Name><Active>true</Active><FullyQualifiedName>Hours</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Services">1</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>7</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:43:54-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:43:54-07:00</LastUpdatedTime></MetaData><Name>Installation</Name><Description>Installation of landscape design</Description><Active>true</Active><FullyQualifiedName>Installation</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>50</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Labor:Installation">52</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>8</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:44:40-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:38-07:00</LastUpdatedTime></MetaData><Name>Lighting</Name><Description>Garden Lighting</Description><Active>true</Active><FullyQualifiedName>Lighting</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>9</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:45:18-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:45:18-07:00</LastUpdatedTime></MetaData><Name>Maintenance &amp; Repair</Name><Description>Maintenance &amp; Repair</Description><Active>true</Active><FullyQualifiedName>Maintenance &amp; Repair</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Labor:Maintenance and Repair">53</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>10</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:45:49-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:45:49-07:00</LastUpdatedTime></MetaData><Name>Pest Control</Name><Description>Pest Control Services</Description><Active>true</Active><FullyQualifiedName>Pest Control</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>35</UnitPrice><Type>Service</Type><IncomeAccountRef name="Pest Control Services">54</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>11</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:46:45-07:00</CreateTime><LastUpdatedTime>2014-10-09T13:16:17-07:00</LastUpdatedTime></MetaData><Name>Pump</Name><Description>Fountain Pump</Description><Active>true</Active><FullyQualifiedName>Pump</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>15</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Fountain Pump</PurchaseDesc><PurchaseCost>10</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>25</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>12</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:49:18-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:49:18-07:00</LastUpdatedTime></MetaData><Name>Refunds &amp; Allowances</Name><Description>Income due to refunds or allowances</Description><Active>true</Active><FullyQualifiedName>Refunds &amp; Allowances</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Other Income">83</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>5</Id><SyncToken>2</SyncToken><MetaData><CreateTime>2014-10-06T10:42:19-07:00</CreateTime><LastUpdatedTime>2014-10-09T13:16:17-07:00</LastUpdatedTime></MetaData><Name>Rock Fountain</Name><Description>Rock Fountain</Description><Active>true</Active><FullyQualifiedName>Rock Fountain</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>275</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Rock Fountain</PurchaseDesc><PurchaseCost>125</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>2</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>13</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:50:11-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:31-07:00</LastUpdatedTime></MetaData><Name>Rocks</Name><Description>Garden Rocks</Description><Active>true</Active><FullyQualifiedName>Rocks</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>1</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-01T14:42:05-07:00</CreateTime><LastUpdatedTime>2014-10-01T14:42:05-07:00</LastUpdatedTime></MetaData><Name>Services</Name><Active>true</Active><FullyQualifiedName>Services</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Services">1</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>14</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:50:45-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:22-07:00</LastUpdatedTime></MetaData><Name>Sod</Name><Description>Sod</Description><Active>true</Active><FullyQualifiedName>Sod</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Plants and Soil">49</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>15</Id><SyncToken>2</SyncToken><MetaData><CreateTime>2014-10-06T10:51:28-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:25-07:00</LastUpdatedTime></MetaData><Name>Soil</Name><Description>2 cubic ft. bag</Description><Active>true</Active><FullyQualifiedName>Soil</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>10</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Plants and Soil">49</IncomeAccountRef><PurchaseDesc>2 cubic ft. bag</PurchaseDesc><PurchaseCost>6.5</PurchaseCost><ExpenseAccountRef name="Job Expenses:Job Materials:Plants and Soil">66</ExpenseAccountRef><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>16</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:51:50-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:51:47-07:00</LastUpdatedTime></MetaData><Name>Sprinkler Heads</Name><Description>Sprinkler Heads</Description><Active>true</Active><FullyQualifiedName>Sprinkler Heads</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>2</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Sprinkler Heads</PurchaseDesc><PurchaseCost>0.75</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>25</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>17</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:52:07-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:57:24-07:00</LastUpdatedTime></MetaData><Name>Sprinkler Pipes</Name><Description>Sprinkler Pipes</Description><Active>true</Active><FullyQualifiedName>Sprinkler Pipes</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>4</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Sprinkler Pipes</PurchaseDesc><PurchaseCost>2.5</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>31</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>18</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:52:42-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:52:42-07:00</LastUpdatedTime></MetaData><Name>Trimming</Name><Description>Tree and Shrub Trimming</Description><Active>true</Active><FullyQualifiedName>Trimming</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>35</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services">45</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item></QueryResponse></IntuitResponse>
95
+ I, [2015-10-17T17:55:06.522050 #36948] INFO -- : <?xml version="1.0" encoding="UTF-8" standalone="yes"?><IntuitResponse xmlns="http://schema.intuit.com/finance/v3" time="2015-10-17T14:55:06.418-07:00"><QueryResponse startPosition="1" maxResults="18"><Item domain="QBO" sparse="false"><Id>3</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:36:03-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:47-07:00</LastUpdatedTime></MetaData><Name>Concrete</Name><Description>Concrete for fountain installation</Description><Active>true</Active><FullyQualifiedName>Concrete</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>4</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:41:38-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:41:38-07:00</LastUpdatedTime></MetaData><Name>Design</Name><Description>Custom Design</Description><Active>true</Active><FullyQualifiedName>Design</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>75</UnitPrice><Type>Service</Type><IncomeAccountRef name="Design income">82</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>6</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:43:14-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:43:14-07:00</LastUpdatedTime></MetaData><Name>Gardening</Name><Description>Weekly Gardening Service</Description><Active>true</Active><FullyQualifiedName>Gardening</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services">45</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>2</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-01T14:42:05-07:00</CreateTime><LastUpdatedTime>2014-10-01T14:42:05-07:00</LastUpdatedTime></MetaData><Name>Hours</Name><Active>true</Active><FullyQualifiedName>Hours</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Services">1</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>7</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:43:54-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:43:54-07:00</LastUpdatedTime></MetaData><Name>Installation</Name><Description>Installation of landscape design</Description><Active>true</Active><FullyQualifiedName>Installation</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>50</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Labor:Installation">52</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>8</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:44:40-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:38-07:00</LastUpdatedTime></MetaData><Name>Lighting</Name><Description>Garden Lighting</Description><Active>true</Active><FullyQualifiedName>Lighting</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>9</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:45:18-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:45:18-07:00</LastUpdatedTime></MetaData><Name>Maintenance &amp; Repair</Name><Description>Maintenance &amp; Repair</Description><Active>true</Active><FullyQualifiedName>Maintenance &amp; Repair</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Labor:Maintenance and Repair">53</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>10</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:45:49-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:45:49-07:00</LastUpdatedTime></MetaData><Name>Pest Control</Name><Description>Pest Control Services</Description><Active>true</Active><FullyQualifiedName>Pest Control</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>35</UnitPrice><Type>Service</Type><IncomeAccountRef name="Pest Control Services">54</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>11</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:46:45-07:00</CreateTime><LastUpdatedTime>2014-10-09T13:16:17-07:00</LastUpdatedTime></MetaData><Name>Pump</Name><Description>Fountain Pump</Description><Active>true</Active><FullyQualifiedName>Pump</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>15</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Fountain Pump</PurchaseDesc><PurchaseCost>10</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>25</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>12</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:49:18-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:49:18-07:00</LastUpdatedTime></MetaData><Name>Refunds &amp; Allowances</Name><Description>Income due to refunds or allowances</Description><Active>true</Active><FullyQualifiedName>Refunds &amp; Allowances</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Other Income">83</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>5</Id><SyncToken>2</SyncToken><MetaData><CreateTime>2014-10-06T10:42:19-07:00</CreateTime><LastUpdatedTime>2014-10-09T13:16:17-07:00</LastUpdatedTime></MetaData><Name>Rock Fountain</Name><Description>Rock Fountain</Description><Active>true</Active><FullyQualifiedName>Rock Fountain</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>275</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Rock Fountain</PurchaseDesc><PurchaseCost>125</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>2</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>13</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:50:11-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:31-07:00</LastUpdatedTime></MetaData><Name>Rocks</Name><Description>Garden Rocks</Description><Active>true</Active><FullyQualifiedName>Rocks</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>1</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-01T14:42:05-07:00</CreateTime><LastUpdatedTime>2014-10-01T14:42:05-07:00</LastUpdatedTime></MetaData><Name>Services</Name><Active>true</Active><FullyQualifiedName>Services</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Services">1</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>14</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:50:45-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:22-07:00</LastUpdatedTime></MetaData><Name>Sod</Name><Description>Sod</Description><Active>true</Active><FullyQualifiedName>Sod</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Plants and Soil">49</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>15</Id><SyncToken>2</SyncToken><MetaData><CreateTime>2014-10-06T10:51:28-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:25-07:00</LastUpdatedTime></MetaData><Name>Soil</Name><Description>2 cubic ft. bag</Description><Active>true</Active><FullyQualifiedName>Soil</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>10</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Plants and Soil">49</IncomeAccountRef><PurchaseDesc>2 cubic ft. bag</PurchaseDesc><PurchaseCost>6.5</PurchaseCost><ExpenseAccountRef name="Job Expenses:Job Materials:Plants and Soil">66</ExpenseAccountRef><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>16</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:51:50-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:51:47-07:00</LastUpdatedTime></MetaData><Name>Sprinkler Heads</Name><Description>Sprinkler Heads</Description><Active>true</Active><FullyQualifiedName>Sprinkler Heads</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>2</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Sprinkler Heads</PurchaseDesc><PurchaseCost>0.75</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>25</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>17</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:52:07-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:57:24-07:00</LastUpdatedTime></MetaData><Name>Sprinkler Pipes</Name><Description>Sprinkler Pipes</Description><Active>true</Active><FullyQualifiedName>Sprinkler Pipes</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>4</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Sprinkler Pipes</PurchaseDesc><PurchaseCost>2.5</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>31</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>18</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:52:42-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:52:42-07:00</LastUpdatedTime></MetaData><Name>Trimming</Name><Description>Tree and Shrub Trimming</Description><Active>true</Active><FullyQualifiedName>Trimming</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>35</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services">45</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item></QueryResponse></IntuitResponse>
96
+ I, [2015-10-17T17:55:54.835013 #36982] INFO -- : <?xml version="1.0" encoding="UTF-8" standalone="yes"?><IntuitResponse xmlns="http://schema.intuit.com/finance/v3" time="2015-10-17T14:55:54.739-07:00"><QueryResponse startPosition="1" maxResults="18"><Item domain="QBO" sparse="false"><Id>3</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:36:03-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:47-07:00</LastUpdatedTime></MetaData><Name>Concrete</Name><Description>Concrete for fountain installation</Description><Active>true</Active><FullyQualifiedName>Concrete</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>4</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:41:38-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:41:38-07:00</LastUpdatedTime></MetaData><Name>Design</Name><Description>Custom Design</Description><Active>true</Active><FullyQualifiedName>Design</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>75</UnitPrice><Type>Service</Type><IncomeAccountRef name="Design income">82</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>6</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:43:14-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:43:14-07:00</LastUpdatedTime></MetaData><Name>Gardening</Name><Description>Weekly Gardening Service</Description><Active>true</Active><FullyQualifiedName>Gardening</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services">45</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>2</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-01T14:42:05-07:00</CreateTime><LastUpdatedTime>2014-10-01T14:42:05-07:00</LastUpdatedTime></MetaData><Name>Hours</Name><Active>true</Active><FullyQualifiedName>Hours</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Services">1</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>7</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:43:54-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:43:54-07:00</LastUpdatedTime></MetaData><Name>Installation</Name><Description>Installation of landscape design</Description><Active>true</Active><FullyQualifiedName>Installation</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>50</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Labor:Installation">52</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>8</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:44:40-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:38-07:00</LastUpdatedTime></MetaData><Name>Lighting</Name><Description>Garden Lighting</Description><Active>true</Active><FullyQualifiedName>Lighting</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>9</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:45:18-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:45:18-07:00</LastUpdatedTime></MetaData><Name>Maintenance &amp; Repair</Name><Description>Maintenance &amp; Repair</Description><Active>true</Active><FullyQualifiedName>Maintenance &amp; Repair</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Labor:Maintenance and Repair">53</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>10</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:45:49-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:45:49-07:00</LastUpdatedTime></MetaData><Name>Pest Control</Name><Description>Pest Control Services</Description><Active>true</Active><FullyQualifiedName>Pest Control</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>35</UnitPrice><Type>Service</Type><IncomeAccountRef name="Pest Control Services">54</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>11</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:46:45-07:00</CreateTime><LastUpdatedTime>2014-10-09T13:16:17-07:00</LastUpdatedTime></MetaData><Name>Pump</Name><Description>Fountain Pump</Description><Active>true</Active><FullyQualifiedName>Pump</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>15</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Fountain Pump</PurchaseDesc><PurchaseCost>10</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>25</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>12</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:49:18-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:49:18-07:00</LastUpdatedTime></MetaData><Name>Refunds &amp; Allowances</Name><Description>Income due to refunds or allowances</Description><Active>true</Active><FullyQualifiedName>Refunds &amp; Allowances</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Other Income">83</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>5</Id><SyncToken>2</SyncToken><MetaData><CreateTime>2014-10-06T10:42:19-07:00</CreateTime><LastUpdatedTime>2014-10-09T13:16:17-07:00</LastUpdatedTime></MetaData><Name>Rock Fountain</Name><Description>Rock Fountain</Description><Active>true</Active><FullyQualifiedName>Rock Fountain</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>275</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Rock Fountain</PurchaseDesc><PurchaseCost>125</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>2</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>13</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:50:11-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:31-07:00</LastUpdatedTime></MetaData><Name>Rocks</Name><Description>Garden Rocks</Description><Active>true</Active><FullyQualifiedName>Rocks</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>1</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-01T14:42:05-07:00</CreateTime><LastUpdatedTime>2014-10-01T14:42:05-07:00</LastUpdatedTime></MetaData><Name>Services</Name><Active>true</Active><FullyQualifiedName>Services</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Services">1</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>14</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:50:45-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:22-07:00</LastUpdatedTime></MetaData><Name>Sod</Name><Description>Sod</Description><Active>true</Active><FullyQualifiedName>Sod</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Plants and Soil">49</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>15</Id><SyncToken>2</SyncToken><MetaData><CreateTime>2014-10-06T10:51:28-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:25-07:00</LastUpdatedTime></MetaData><Name>Soil</Name><Description>2 cubic ft. bag</Description><Active>true</Active><FullyQualifiedName>Soil</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>10</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Plants and Soil">49</IncomeAccountRef><PurchaseDesc>2 cubic ft. bag</PurchaseDesc><PurchaseCost>6.5</PurchaseCost><ExpenseAccountRef name="Job Expenses:Job Materials:Plants and Soil">66</ExpenseAccountRef><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>16</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:51:50-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:51:47-07:00</LastUpdatedTime></MetaData><Name>Sprinkler Heads</Name><Description>Sprinkler Heads</Description><Active>true</Active><FullyQualifiedName>Sprinkler Heads</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>2</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Sprinkler Heads</PurchaseDesc><PurchaseCost>0.75</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>25</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>17</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:52:07-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:57:24-07:00</LastUpdatedTime></MetaData><Name>Sprinkler Pipes</Name><Description>Sprinkler Pipes</Description><Active>true</Active><FullyQualifiedName>Sprinkler Pipes</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>4</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Sprinkler Pipes</PurchaseDesc><PurchaseCost>2.5</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>31</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>18</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:52:42-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:52:42-07:00</LastUpdatedTime></MetaData><Name>Trimming</Name><Description>Tree and Shrub Trimming</Description><Active>true</Active><FullyQualifiedName>Trimming</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>35</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services">45</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item></QueryResponse></IntuitResponse>
97
+ I, [2015-10-17T18:00:15.643997 #37154] INFO -- : <?xml version="1.0" encoding="UTF-8" standalone="yes"?><IntuitResponse xmlns="http://schema.intuit.com/finance/v3" time="2015-10-17T15:00:15.558-07:00"><QueryResponse startPosition="1" maxResults="18"><Item domain="QBO" sparse="false"><Id>3</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:36:03-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:47-07:00</LastUpdatedTime></MetaData><Name>Concrete</Name><Description>Concrete for fountain installation</Description><Active>true</Active><FullyQualifiedName>Concrete</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>4</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:41:38-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:41:38-07:00</LastUpdatedTime></MetaData><Name>Design</Name><Description>Custom Design</Description><Active>true</Active><FullyQualifiedName>Design</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>75</UnitPrice><Type>Service</Type><IncomeAccountRef name="Design income">82</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>6</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:43:14-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:43:14-07:00</LastUpdatedTime></MetaData><Name>Gardening</Name><Description>Weekly Gardening Service</Description><Active>true</Active><FullyQualifiedName>Gardening</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services">45</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>2</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-01T14:42:05-07:00</CreateTime><LastUpdatedTime>2014-10-01T14:42:05-07:00</LastUpdatedTime></MetaData><Name>Hours</Name><Active>true</Active><FullyQualifiedName>Hours</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Services">1</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>7</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:43:54-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:43:54-07:00</LastUpdatedTime></MetaData><Name>Installation</Name><Description>Installation of landscape design</Description><Active>true</Active><FullyQualifiedName>Installation</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>50</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Labor:Installation">52</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>8</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:44:40-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:38-07:00</LastUpdatedTime></MetaData><Name>Lighting</Name><Description>Garden Lighting</Description><Active>true</Active><FullyQualifiedName>Lighting</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>9</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:45:18-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:45:18-07:00</LastUpdatedTime></MetaData><Name>Maintenance &amp; Repair</Name><Description>Maintenance &amp; Repair</Description><Active>true</Active><FullyQualifiedName>Maintenance &amp; Repair</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Labor:Maintenance and Repair">53</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>10</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:45:49-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:45:49-07:00</LastUpdatedTime></MetaData><Name>Pest Control</Name><Description>Pest Control Services</Description><Active>true</Active><FullyQualifiedName>Pest Control</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>35</UnitPrice><Type>Service</Type><IncomeAccountRef name="Pest Control Services">54</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>11</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:46:45-07:00</CreateTime><LastUpdatedTime>2014-10-09T13:16:17-07:00</LastUpdatedTime></MetaData><Name>Pump</Name><Description>Fountain Pump</Description><Active>true</Active><FullyQualifiedName>Pump</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>15</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Fountain Pump</PurchaseDesc><PurchaseCost>10</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>25</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>12</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:49:18-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:49:18-07:00</LastUpdatedTime></MetaData><Name>Refunds &amp; Allowances</Name><Description>Income due to refunds or allowances</Description><Active>true</Active><FullyQualifiedName>Refunds &amp; Allowances</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Other Income">83</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>5</Id><SyncToken>2</SyncToken><MetaData><CreateTime>2014-10-06T10:42:19-07:00</CreateTime><LastUpdatedTime>2014-10-09T13:16:17-07:00</LastUpdatedTime></MetaData><Name>Rock Fountain</Name><Description>Rock Fountain</Description><Active>true</Active><FullyQualifiedName>Rock Fountain</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>275</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Rock Fountain</PurchaseDesc><PurchaseCost>125</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>2</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>13</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:50:11-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:31-07:00</LastUpdatedTime></MetaData><Name>Rocks</Name><Description>Garden Rocks</Description><Active>true</Active><FullyQualifiedName>Rocks</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Fountains and Garden Lighting">48</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>1</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-01T14:42:05-07:00</CreateTime><LastUpdatedTime>2014-10-01T14:42:05-07:00</LastUpdatedTime></MetaData><Name>Services</Name><Active>true</Active><FullyQualifiedName>Services</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Services">1</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>14</Id><SyncToken>1</SyncToken><MetaData><CreateTime>2014-10-06T10:50:45-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:22-07:00</LastUpdatedTime></MetaData><Name>Sod</Name><Description>Sod</Description><Active>true</Active><FullyQualifiedName>Sod</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>0</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Plants and Soil">49</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>15</Id><SyncToken>2</SyncToken><MetaData><CreateTime>2014-10-06T10:51:28-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:47:25-07:00</LastUpdatedTime></MetaData><Name>Soil</Name><Description>2 cubic ft. bag</Description><Active>true</Active><FullyQualifiedName>Soil</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>10</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services:Job Materials:Plants and Soil">49</IncomeAccountRef><PurchaseDesc>2 cubic ft. bag</PurchaseDesc><PurchaseCost>6.5</PurchaseCost><ExpenseAccountRef name="Job Expenses:Job Materials:Plants and Soil">66</ExpenseAccountRef><TrackQtyOnHand>false</TrackQtyOnHand></Item><Item domain="QBO" sparse="false"><Id>16</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:51:50-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:51:47-07:00</LastUpdatedTime></MetaData><Name>Sprinkler Heads</Name><Description>Sprinkler Heads</Description><Active>true</Active><FullyQualifiedName>Sprinkler Heads</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>2</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Sprinkler Heads</PurchaseDesc><PurchaseCost>0.75</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>25</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>17</Id><SyncToken>3</SyncToken><MetaData><CreateTime>2014-10-06T10:52:07-07:00</CreateTime><LastUpdatedTime>2014-10-09T12:57:24-07:00</LastUpdatedTime></MetaData><Name>Sprinkler Pipes</Name><Description>Sprinkler Pipes</Description><Active>true</Active><FullyQualifiedName>Sprinkler Pipes</FullyQualifiedName><Taxable>true</Taxable><UnitPrice>4</UnitPrice><Type>Inventory</Type><IncomeAccountRef name="Sales of Product Income">79</IncomeAccountRef><PurchaseDesc>Sprinkler Pipes</PurchaseDesc><PurchaseCost>2.5</PurchaseCost><ExpenseAccountRef name="Cost of Goods Sold">80</ExpenseAccountRef><AssetAccountRef name="Inventory Asset">81</AssetAccountRef><TrackQtyOnHand>true</TrackQtyOnHand><QtyOnHand>31</QtyOnHand><InvStartDate>2014-10-09</InvStartDate></Item><Item domain="QBO" sparse="false"><Id>18</Id><SyncToken>0</SyncToken><MetaData><CreateTime>2014-10-06T10:52:42-07:00</CreateTime><LastUpdatedTime>2014-10-06T10:52:42-07:00</LastUpdatedTime></MetaData><Name>Trimming</Name><Description>Tree and Shrub Trimming</Description><Active>true</Active><FullyQualifiedName>Trimming</FullyQualifiedName><Taxable>false</Taxable><UnitPrice>35</UnitPrice><Type>Service</Type><IncomeAccountRef name="Landscaping Services">45</IncomeAccountRef><PurchaseCost>0</PurchaseCost><TrackQtyOnHand>false</TrackQtyOnHand></Item></QueryResponse></IntuitResponse>
98
+ I, [2015-10-20T04:36:05.571859 #95942] INFO -- : {"QueryResponse"=>{"Item"=>[{"Name"=>"Concrete", "Description"=>"Concrete for fountain installation", "Active"=>true, "FullyQualifiedName"=>"Concrete", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"3", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:36:03-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:47-07:00"}}, {"Name"=>"Design", "Description"=>"Custom Design", "Active"=>true, "FullyQualifiedName"=>"Design", "Taxable"=>false, "UnitPrice"=>75, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"82", "name"=>"Design income"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"4", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:41:38-07:00", "LastUpdatedTime"=>"2014-10-06T10:41:38-07:00"}}, {"Name"=>"Gardening", "Description"=>"Weekly Gardening Service", "Active"=>true, "FullyQualifiedName"=>"Gardening", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"45", "name"=>"Landscaping Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"6", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:43:14-07:00", "LastUpdatedTime"=>"2014-10-06T10:43:14-07:00"}}, {"Name"=>"Hours", "Active"=>true, "FullyQualifiedName"=>"Hours", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"1", "name"=>"Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"2", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-01T14:42:05-07:00", "LastUpdatedTime"=>"2014-10-01T14:42:05-07:00"}}, {"Name"=>"Installation", "Description"=>"Installation of landscape design", "Active"=>true, "FullyQualifiedName"=>"Installation", "Taxable"=>false, "UnitPrice"=>50, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"52", "name"=>"Landscaping Services:Labor:Installation"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"7", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:43:54-07:00", "LastUpdatedTime"=>"2014-10-06T10:43:54-07:00"}}, {"Name"=>"Lighting", "Description"=>"Garden Lighting", "Active"=>true, "FullyQualifiedName"=>"Lighting", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"8", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:44:40-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:38-07:00"}}, {"Name"=>"Maintenance & Repair", "Description"=>"Maintenance & Repair", "Active"=>true, "FullyQualifiedName"=>"Maintenance & Repair", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"53", "name"=>"Landscaping Services:Labor:Maintenance and Repair"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"9", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:45:18-07:00", "LastUpdatedTime"=>"2014-10-06T10:45:18-07:00"}}, {"Name"=>"Pest Control", "Description"=>"Pest Control Services", "Active"=>true, "FullyQualifiedName"=>"Pest Control", "Taxable"=>false, "UnitPrice"=>35, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"54", "name"=>"Pest Control Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"10", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:45:49-07:00", "LastUpdatedTime"=>"2014-10-06T10:45:49-07:00"}}, {"Name"=>"Pump", "Description"=>"Fountain Pump", "Active"=>true, "FullyQualifiedName"=>"Pump", "Taxable"=>true, "UnitPrice"=>15, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Fountain Pump", "PurchaseCost"=>10, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>25, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"11", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:46:45-07:00", "LastUpdatedTime"=>"2014-10-09T13:16:17-07:00"}}, {"Name"=>"Refunds & Allowances", "Description"=>"Income due to refunds or allowances", "Active"=>true, "FullyQualifiedName"=>"Refunds & Allowances", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"83", "name"=>"Other Income"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"12", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:49:18-07:00", "LastUpdatedTime"=>"2014-10-06T10:49:18-07:00"}}, {"Name"=>"Rock Fountain", "Description"=>"Rock Fountain", "Active"=>true, "FullyQualifiedName"=>"Rock Fountain", "Taxable"=>true, "UnitPrice"=>275, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Rock Fountain", "PurchaseCost"=>125, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>2, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"5", "SyncToken"=>"2", "MetaData"=>{"CreateTime"=>"2014-10-06T10:42:19-07:00", "LastUpdatedTime"=>"2014-10-09T13:16:17-07:00"}}, {"Name"=>"Rocks", "Description"=>"Garden Rocks", "Active"=>true, "FullyQualifiedName"=>"Rocks", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"13", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:50:11-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:31-07:00"}}, {"Name"=>"Services", "Active"=>true, "FullyQualifiedName"=>"Services", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"1", "name"=>"Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"1", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-01T14:42:05-07:00", "LastUpdatedTime"=>"2014-10-01T14:42:05-07:00"}}, {"Name"=>"Sod", "Description"=>"Sod", "Active"=>true, "FullyQualifiedName"=>"Sod", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"49", "name"=>"Landscaping Services:Job Materials:Plants and Soil"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"14", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:50:45-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:22-07:00"}}, {"Name"=>"Soil", "Description"=>"2 cubic ft. bag", "Active"=>true, "FullyQualifiedName"=>"Soil", "Taxable"=>true, "UnitPrice"=>10, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"49", "name"=>"Landscaping Services:Job Materials:Plants and Soil"}, "PurchaseDesc"=>"2 cubic ft. bag", "PurchaseCost"=>6.5, "ExpenseAccountRef"=>{"value"=>"66", "name"=>"Job Expenses:Job Materials:Plants and Soil"}, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"15", "SyncToken"=>"2", "MetaData"=>{"CreateTime"=>"2014-10-06T10:51:28-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:25-07:00"}}, {"Name"=>"Sprinkler Heads", "Description"=>"Sprinkler Heads", "Active"=>true, "FullyQualifiedName"=>"Sprinkler Heads", "Taxable"=>true, "UnitPrice"=>2, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Sprinkler Heads", "PurchaseCost"=>0.75, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>25, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"16", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:51:50-07:00", "LastUpdatedTime"=>"2014-10-09T12:51:47-07:00"}}, {"Name"=>"Sprinkler Pipes", "Description"=>"Sprinkler Pipes", "Active"=>true, "FullyQualifiedName"=>"Sprinkler Pipes", "Taxable"=>true, "UnitPrice"=>4, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Sprinkler Pipes", "PurchaseCost"=>2.5, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>31, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"17", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:52:07-07:00", "LastUpdatedTime"=>"2014-10-09T12:57:24-07:00"}}, {"Name"=>"Trimming", "Description"=>"Tree and Shrub Trimming", "Active"=>true, "FullyQualifiedName"=>"Trimming", "Taxable"=>false, "UnitPrice"=>35, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"45", "name"=>"Landscaping Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"18", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:52:42-07:00", "LastUpdatedTime"=>"2014-10-06T10:52:42-07:00"}}], "startPosition"=>1, "maxResults"=>18}, "time"=>"2015-10-20T01:36:04.737-07:00"}
99
+ I, [2015-10-20T04:47:01.033396 #96488] INFO -- : {"QueryResponse"=>{"Item"=>[{"Name"=>"Concrete", "Description"=>"Concrete for fountain installation", "Active"=>true, "FullyQualifiedName"=>"Concrete", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"3", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:36:03-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:47-07:00"}}, {"Name"=>"Design", "Description"=>"Custom Design", "Active"=>true, "FullyQualifiedName"=>"Design", "Taxable"=>false, "UnitPrice"=>75, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"82", "name"=>"Design income"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"4", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:41:38-07:00", "LastUpdatedTime"=>"2014-10-06T10:41:38-07:00"}}, {"Name"=>"Gardening", "Description"=>"Weekly Gardening Service", "Active"=>true, "FullyQualifiedName"=>"Gardening", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"45", "name"=>"Landscaping Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"6", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:43:14-07:00", "LastUpdatedTime"=>"2014-10-06T10:43:14-07:00"}}, {"Name"=>"Hours", "Active"=>true, "FullyQualifiedName"=>"Hours", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"1", "name"=>"Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"2", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-01T14:42:05-07:00", "LastUpdatedTime"=>"2014-10-01T14:42:05-07:00"}}, {"Name"=>"Installation", "Description"=>"Installation of landscape design", "Active"=>true, "FullyQualifiedName"=>"Installation", "Taxable"=>false, "UnitPrice"=>50, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"52", "name"=>"Landscaping Services:Labor:Installation"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"7", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:43:54-07:00", "LastUpdatedTime"=>"2014-10-06T10:43:54-07:00"}}, {"Name"=>"Lighting", "Description"=>"Garden Lighting", "Active"=>true, "FullyQualifiedName"=>"Lighting", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"8", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:44:40-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:38-07:00"}}, {"Name"=>"Maintenance & Repair", "Description"=>"Maintenance & Repair", "Active"=>true, "FullyQualifiedName"=>"Maintenance & Repair", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"53", "name"=>"Landscaping Services:Labor:Maintenance and Repair"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"9", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:45:18-07:00", "LastUpdatedTime"=>"2014-10-06T10:45:18-07:00"}}, {"Name"=>"Pest Control", "Description"=>"Pest Control Services", "Active"=>true, "FullyQualifiedName"=>"Pest Control", "Taxable"=>false, "UnitPrice"=>35, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"54", "name"=>"Pest Control Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"10", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:45:49-07:00", "LastUpdatedTime"=>"2014-10-06T10:45:49-07:00"}}, {"Name"=>"Pump", "Description"=>"Fountain Pump", "Active"=>true, "FullyQualifiedName"=>"Pump", "Taxable"=>true, "UnitPrice"=>15, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Fountain Pump", "PurchaseCost"=>10, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>25, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"11", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:46:45-07:00", "LastUpdatedTime"=>"2014-10-09T13:16:17-07:00"}}, {"Name"=>"Refunds & Allowances", "Description"=>"Income due to refunds or allowances", "Active"=>true, "FullyQualifiedName"=>"Refunds & Allowances", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"83", "name"=>"Other Income"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"12", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:49:18-07:00", "LastUpdatedTime"=>"2014-10-06T10:49:18-07:00"}}, {"Name"=>"Rock Fountain", "Description"=>"Rock Fountain", "Active"=>true, "FullyQualifiedName"=>"Rock Fountain", "Taxable"=>true, "UnitPrice"=>275, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Rock Fountain", "PurchaseCost"=>125, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>2, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"5", "SyncToken"=>"2", "MetaData"=>{"CreateTime"=>"2014-10-06T10:42:19-07:00", "LastUpdatedTime"=>"2014-10-09T13:16:17-07:00"}}, {"Name"=>"Rocks", "Description"=>"Garden Rocks", "Active"=>true, "FullyQualifiedName"=>"Rocks", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"13", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:50:11-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:31-07:00"}}, {"Name"=>"Services", "Active"=>true, "FullyQualifiedName"=>"Services", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"1", "name"=>"Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"1", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-01T14:42:05-07:00", "LastUpdatedTime"=>"2014-10-01T14:42:05-07:00"}}, {"Name"=>"Sod", "Description"=>"Sod", "Active"=>true, "FullyQualifiedName"=>"Sod", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"49", "name"=>"Landscaping Services:Job Materials:Plants and Soil"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"14", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:50:45-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:22-07:00"}}, {"Name"=>"Soil", "Description"=>"2 cubic ft. bag", "Active"=>true, "FullyQualifiedName"=>"Soil", "Taxable"=>true, "UnitPrice"=>10, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"49", "name"=>"Landscaping Services:Job Materials:Plants and Soil"}, "PurchaseDesc"=>"2 cubic ft. bag", "PurchaseCost"=>6.5, "ExpenseAccountRef"=>{"value"=>"66", "name"=>"Job Expenses:Job Materials:Plants and Soil"}, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"15", "SyncToken"=>"2", "MetaData"=>{"CreateTime"=>"2014-10-06T10:51:28-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:25-07:00"}}, {"Name"=>"Sprinkler Heads", "Description"=>"Sprinkler Heads", "Active"=>true, "FullyQualifiedName"=>"Sprinkler Heads", "Taxable"=>true, "UnitPrice"=>2, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Sprinkler Heads", "PurchaseCost"=>0.75, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>25, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"16", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:51:50-07:00", "LastUpdatedTime"=>"2014-10-09T12:51:47-07:00"}}, {"Name"=>"Sprinkler Pipes", "Description"=>"Sprinkler Pipes", "Active"=>true, "FullyQualifiedName"=>"Sprinkler Pipes", "Taxable"=>true, "UnitPrice"=>4, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Sprinkler Pipes", "PurchaseCost"=>2.5, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>31, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"17", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:52:07-07:00", "LastUpdatedTime"=>"2014-10-09T12:57:24-07:00"}}, {"Name"=>"Trimming", "Description"=>"Tree and Shrub Trimming", "Active"=>true, "FullyQualifiedName"=>"Trimming", "Taxable"=>false, "UnitPrice"=>35, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"45", "name"=>"Landscaping Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"18", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:52:42-07:00", "LastUpdatedTime"=>"2014-10-06T10:52:42-07:00"}}], "startPosition"=>1, "maxResults"=>18}, "time"=>"2015-10-20T01:47:00.138-07:00"}
100
+ I, [2015-10-20T04:47:39.197247 #96517] INFO -- : {"QueryResponse"=>{"Item"=>[{"Name"=>"Concrete", "Description"=>"Concrete for fountain installation", "Active"=>true, "FullyQualifiedName"=>"Concrete", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"3", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:36:03-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:47-07:00"}}, {"Name"=>"Design", "Description"=>"Custom Design", "Active"=>true, "FullyQualifiedName"=>"Design", "Taxable"=>false, "UnitPrice"=>75, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"82", "name"=>"Design income"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"4", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:41:38-07:00", "LastUpdatedTime"=>"2014-10-06T10:41:38-07:00"}}, {"Name"=>"Gardening", "Description"=>"Weekly Gardening Service", "Active"=>true, "FullyQualifiedName"=>"Gardening", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"45", "name"=>"Landscaping Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"6", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:43:14-07:00", "LastUpdatedTime"=>"2014-10-06T10:43:14-07:00"}}, {"Name"=>"Hours", "Active"=>true, "FullyQualifiedName"=>"Hours", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"1", "name"=>"Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"2", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-01T14:42:05-07:00", "LastUpdatedTime"=>"2014-10-01T14:42:05-07:00"}}, {"Name"=>"Installation", "Description"=>"Installation of landscape design", "Active"=>true, "FullyQualifiedName"=>"Installation", "Taxable"=>false, "UnitPrice"=>50, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"52", "name"=>"Landscaping Services:Labor:Installation"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"7", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:43:54-07:00", "LastUpdatedTime"=>"2014-10-06T10:43:54-07:00"}}, {"Name"=>"Lighting", "Description"=>"Garden Lighting", "Active"=>true, "FullyQualifiedName"=>"Lighting", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"8", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:44:40-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:38-07:00"}}, {"Name"=>"Maintenance & Repair", "Description"=>"Maintenance & Repair", "Active"=>true, "FullyQualifiedName"=>"Maintenance & Repair", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"53", "name"=>"Landscaping Services:Labor:Maintenance and Repair"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"9", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:45:18-07:00", "LastUpdatedTime"=>"2014-10-06T10:45:18-07:00"}}, {"Name"=>"Pest Control", "Description"=>"Pest Control Services", "Active"=>true, "FullyQualifiedName"=>"Pest Control", "Taxable"=>false, "UnitPrice"=>35, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"54", "name"=>"Pest Control Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"10", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:45:49-07:00", "LastUpdatedTime"=>"2014-10-06T10:45:49-07:00"}}, {"Name"=>"Pump", "Description"=>"Fountain Pump", "Active"=>true, "FullyQualifiedName"=>"Pump", "Taxable"=>true, "UnitPrice"=>15, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Fountain Pump", "PurchaseCost"=>10, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>25, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"11", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:46:45-07:00", "LastUpdatedTime"=>"2014-10-09T13:16:17-07:00"}}, {"Name"=>"Refunds & Allowances", "Description"=>"Income due to refunds or allowances", "Active"=>true, "FullyQualifiedName"=>"Refunds & Allowances", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"83", "name"=>"Other Income"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"12", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:49:18-07:00", "LastUpdatedTime"=>"2014-10-06T10:49:18-07:00"}}, {"Name"=>"Rock Fountain", "Description"=>"Rock Fountain", "Active"=>true, "FullyQualifiedName"=>"Rock Fountain", "Taxable"=>true, "UnitPrice"=>275, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Rock Fountain", "PurchaseCost"=>125, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>2, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"5", "SyncToken"=>"2", "MetaData"=>{"CreateTime"=>"2014-10-06T10:42:19-07:00", "LastUpdatedTime"=>"2014-10-09T13:16:17-07:00"}}, {"Name"=>"Rocks", "Description"=>"Garden Rocks", "Active"=>true, "FullyQualifiedName"=>"Rocks", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"13", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:50:11-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:31-07:00"}}, {"Name"=>"Services", "Active"=>true, "FullyQualifiedName"=>"Services", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"1", "name"=>"Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"1", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-01T14:42:05-07:00", "LastUpdatedTime"=>"2014-10-01T14:42:05-07:00"}}, {"Name"=>"Sod", "Description"=>"Sod", "Active"=>true, "FullyQualifiedName"=>"Sod", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"49", "name"=>"Landscaping Services:Job Materials:Plants and Soil"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"14", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:50:45-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:22-07:00"}}, {"Name"=>"Soil", "Description"=>"2 cubic ft. bag", "Active"=>true, "FullyQualifiedName"=>"Soil", "Taxable"=>true, "UnitPrice"=>10, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"49", "name"=>"Landscaping Services:Job Materials:Plants and Soil"}, "PurchaseDesc"=>"2 cubic ft. bag", "PurchaseCost"=>6.5, "ExpenseAccountRef"=>{"value"=>"66", "name"=>"Job Expenses:Job Materials:Plants and Soil"}, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"15", "SyncToken"=>"2", "MetaData"=>{"CreateTime"=>"2014-10-06T10:51:28-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:25-07:00"}}, {"Name"=>"Sprinkler Heads", "Description"=>"Sprinkler Heads", "Active"=>true, "FullyQualifiedName"=>"Sprinkler Heads", "Taxable"=>true, "UnitPrice"=>2, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Sprinkler Heads", "PurchaseCost"=>0.75, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>25, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"16", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:51:50-07:00", "LastUpdatedTime"=>"2014-10-09T12:51:47-07:00"}}, {"Name"=>"Sprinkler Pipes", "Description"=>"Sprinkler Pipes", "Active"=>true, "FullyQualifiedName"=>"Sprinkler Pipes", "Taxable"=>true, "UnitPrice"=>4, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Sprinkler Pipes", "PurchaseCost"=>2.5, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>31, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"17", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:52:07-07:00", "LastUpdatedTime"=>"2014-10-09T12:57:24-07:00"}}, {"Name"=>"Trimming", "Description"=>"Tree and Shrub Trimming", "Active"=>true, "FullyQualifiedName"=>"Trimming", "Taxable"=>false, "UnitPrice"=>35, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"45", "name"=>"Landscaping Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"18", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:52:42-07:00", "LastUpdatedTime"=>"2014-10-06T10:52:42-07:00"}}], "startPosition"=>1, "maxResults"=>18}, "time"=>"2015-10-20T01:47:38.423-07:00"}
101
+ I, [2015-10-20T04:57:37.024979 #96917] INFO -- : {"QueryResponse"=>{"Item"=>[{"Name"=>"Concrete", "Description"=>"Concrete for fountain installation", "Active"=>true, "FullyQualifiedName"=>"Concrete", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"3", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:36:03-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:47-07:00"}}, {"Name"=>"Design", "Description"=>"Custom Design", "Active"=>true, "FullyQualifiedName"=>"Design", "Taxable"=>false, "UnitPrice"=>75, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"82", "name"=>"Design income"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"4", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:41:38-07:00", "LastUpdatedTime"=>"2014-10-06T10:41:38-07:00"}}, {"Name"=>"Gardening", "Description"=>"Weekly Gardening Service", "Active"=>true, "FullyQualifiedName"=>"Gardening", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"45", "name"=>"Landscaping Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"6", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:43:14-07:00", "LastUpdatedTime"=>"2014-10-06T10:43:14-07:00"}}, {"Name"=>"Hours", "Active"=>true, "FullyQualifiedName"=>"Hours", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"1", "name"=>"Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"2", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-01T14:42:05-07:00", "LastUpdatedTime"=>"2014-10-01T14:42:05-07:00"}}, {"Name"=>"Installation", "Description"=>"Installation of landscape design", "Active"=>true, "FullyQualifiedName"=>"Installation", "Taxable"=>false, "UnitPrice"=>50, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"52", "name"=>"Landscaping Services:Labor:Installation"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"7", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:43:54-07:00", "LastUpdatedTime"=>"2014-10-06T10:43:54-07:00"}}, {"Name"=>"Lighting", "Description"=>"Garden Lighting", "Active"=>true, "FullyQualifiedName"=>"Lighting", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"8", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:44:40-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:38-07:00"}}, {"Name"=>"Maintenance & Repair", "Description"=>"Maintenance & Repair", "Active"=>true, "FullyQualifiedName"=>"Maintenance & Repair", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"53", "name"=>"Landscaping Services:Labor:Maintenance and Repair"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"9", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:45:18-07:00", "LastUpdatedTime"=>"2014-10-06T10:45:18-07:00"}}, {"Name"=>"Pest Control", "Description"=>"Pest Control Services", "Active"=>true, "FullyQualifiedName"=>"Pest Control", "Taxable"=>false, "UnitPrice"=>35, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"54", "name"=>"Pest Control Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"10", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:45:49-07:00", "LastUpdatedTime"=>"2014-10-06T10:45:49-07:00"}}, {"Name"=>"Pump", "Description"=>"Fountain Pump", "Active"=>true, "FullyQualifiedName"=>"Pump", "Taxable"=>true, "UnitPrice"=>15, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Fountain Pump", "PurchaseCost"=>10, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>25, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"11", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:46:45-07:00", "LastUpdatedTime"=>"2014-10-09T13:16:17-07:00"}}, {"Name"=>"Refunds & Allowances", "Description"=>"Income due to refunds or allowances", "Active"=>true, "FullyQualifiedName"=>"Refunds & Allowances", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"83", "name"=>"Other Income"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"12", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:49:18-07:00", "LastUpdatedTime"=>"2014-10-06T10:49:18-07:00"}}, {"Name"=>"Rock Fountain", "Description"=>"Rock Fountain", "Active"=>true, "FullyQualifiedName"=>"Rock Fountain", "Taxable"=>true, "UnitPrice"=>275, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Rock Fountain", "PurchaseCost"=>125, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>2, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"5", "SyncToken"=>"2", "MetaData"=>{"CreateTime"=>"2014-10-06T10:42:19-07:00", "LastUpdatedTime"=>"2014-10-09T13:16:17-07:00"}}, {"Name"=>"Rocks", "Description"=>"Garden Rocks", "Active"=>true, "FullyQualifiedName"=>"Rocks", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"48", "name"=>"Landscaping Services:Job Materials:Fountains and Garden Lighting"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"13", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:50:11-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:31-07:00"}}, {"Name"=>"Services", "Active"=>true, "FullyQualifiedName"=>"Services", "Taxable"=>false, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"1", "name"=>"Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"1", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-01T14:42:05-07:00", "LastUpdatedTime"=>"2014-10-01T14:42:05-07:00"}}, {"Name"=>"Sod", "Description"=>"Sod", "Active"=>true, "FullyQualifiedName"=>"Sod", "Taxable"=>true, "UnitPrice"=>0, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"49", "name"=>"Landscaping Services:Job Materials:Plants and Soil"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"14", "SyncToken"=>"1", "MetaData"=>{"CreateTime"=>"2014-10-06T10:50:45-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:22-07:00"}}, {"Name"=>"Soil", "Description"=>"2 cubic ft. bag", "Active"=>true, "FullyQualifiedName"=>"Soil", "Taxable"=>true, "UnitPrice"=>10, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"49", "name"=>"Landscaping Services:Job Materials:Plants and Soil"}, "PurchaseDesc"=>"2 cubic ft. bag", "PurchaseCost"=>6.5, "ExpenseAccountRef"=>{"value"=>"66", "name"=>"Job Expenses:Job Materials:Plants and Soil"}, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"15", "SyncToken"=>"2", "MetaData"=>{"CreateTime"=>"2014-10-06T10:51:28-07:00", "LastUpdatedTime"=>"2014-10-09T12:47:25-07:00"}}, {"Name"=>"Sprinkler Heads", "Description"=>"Sprinkler Heads", "Active"=>true, "FullyQualifiedName"=>"Sprinkler Heads", "Taxable"=>true, "UnitPrice"=>2, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Sprinkler Heads", "PurchaseCost"=>0.75, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>25, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"16", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:51:50-07:00", "LastUpdatedTime"=>"2014-10-09T12:51:47-07:00"}}, {"Name"=>"Sprinkler Pipes", "Description"=>"Sprinkler Pipes", "Active"=>true, "FullyQualifiedName"=>"Sprinkler Pipes", "Taxable"=>true, "UnitPrice"=>4, "Type"=>"Inventory", "IncomeAccountRef"=>{"value"=>"79", "name"=>"Sales of Product Income"}, "PurchaseDesc"=>"Sprinkler Pipes", "PurchaseCost"=>2.5, "ExpenseAccountRef"=>{"value"=>"80", "name"=>"Cost of Goods Sold"}, "AssetAccountRef"=>{"value"=>"81", "name"=>"Inventory Asset"}, "TrackQtyOnHand"=>true, "QtyOnHand"=>31, "InvStartDate"=>"2014-10-09", "domain"=>"QBO", "sparse"=>false, "Id"=>"17", "SyncToken"=>"3", "MetaData"=>{"CreateTime"=>"2014-10-06T10:52:07-07:00", "LastUpdatedTime"=>"2014-10-09T12:57:24-07:00"}}, {"Name"=>"Trimming", "Description"=>"Tree and Shrub Trimming", "Active"=>true, "FullyQualifiedName"=>"Trimming", "Taxable"=>false, "UnitPrice"=>35, "Type"=>"Service", "IncomeAccountRef"=>{"value"=>"45", "name"=>"Landscaping Services"}, "PurchaseCost"=>0, "TrackQtyOnHand"=>false, "domain"=>"QBO", "sparse"=>false, "Id"=>"18", "SyncToken"=>"0", "MetaData"=>{"CreateTime"=>"2014-10-06T10:52:42-07:00", "LastUpdatedTime"=>"2014-10-06T10:52:42-07:00"}}], "startPosition"=>1, "maxResults"=>18}, "time"=>"2015-10-20T01:57:36.252-07:00"}
102
+ I, [2015-10-23T05:08:57.877120 #33639] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
103
+ D, [2015-10-23T05:08:57.877377 #33639] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"783a9d33fd4af4f9a79732eb9a4f9f3c\", oauth_signature=\"MePfVvkBpjsxxlzzZnagiPCE6m0%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445591337\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
104
+ I, [2015-10-23T05:08:59.062017 #33639] INFO -- : HTTP 200
105
+ D, [2015-10-23T05:08:59.062346 #33639] DEBUG -- : "date: Fri, 23 Oct 2015 09:08:57 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: 1c249bba-9eea-49da-a818-5cbdce314254\nvia: 1.1 ipp-gateway-ap06\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\"=>{\"Taxable\"=>false, \"BillAddr\"=>{\"Id\"=>\"7\", \"Line1\"=>\"370 Easy St.\", \"City\"=>\"Middlefield\", \"CountrySubDivisionCode\"=>\"CA\", \"PostalCode\"=>\"94482\", \"Lat\"=>\"37.4031672\", \"Long\"=>\"-122.0642815\"}, \"ShipAddr\"=>{\"Id\"=>\"7\", \"Line1\"=>\"370 Easy St.\", \"City\"=>\"Middlefield\", \"CountrySubDivisionCode\"=>\"CA\", \"PostalCode\"=>\"94482\", \"Lat\"=>\"37.4031672\", \"Long\"=>\"-122.0642815\"}, \"Job\"=>false, \"BillWithParent\"=>false, \"Balance\"=>0, \"BalanceWithJobs\"=>562.5, \"CurrencyRef\"=>{\"value\"=>\"USD\", \"name\"=>\"United States Dollar\"}, \"PreferredDeliveryMethod\"=>\"Print\", \"domain\"=>\"QBO\", \"sparse\"=>false, \"Id\"=>\"7\", \"SyncToken\"=>\"0\", \"MetaData\"=>{\"CreateTime\"=>\"2014-10-01T16:57:10-07:00\", \"LastUpdatedTime\"=>\"2014-10-09T13:15:36-07:00\"}, \"GivenName\"=>\"Kirby\", \"FamilyName\"=>\"Freeman\", \"FullyQualifiedName\"=>\"Freeman Sporting Goods\", \"CompanyName\"=>\"Freeman Sporting Goods\", \"DisplayName\"=>\"Freeman Sporting Goods\", \"PrintOnCheckName\"=>\"Freeman Sporting Goods\", \"Active\"=>true, \"PrimaryPhone\"=>{\"FreeFormNumber\"=>\"(650) 555-0987\"}, \"Mobile\"=>{\"FreeFormNumber\"=>\"(973) 555-8849\"}, \"Fax\"=>{\"FreeFormNumber\"=>\"(520) 555-7894\"}, \"PrimaryEmailAddr\"=>{\"Address\"=>\"Sporting_goods@intuit.com\"}, \"WebAddr\"=>{\"URI\"=>\"http://sportinggoods.intuit.com\"}}, \"time\"=>\"2015-10-23T02:08:57.506-07:00\"}"
106
+ I, [2015-10-23T05:33:29.749134 #34702] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
107
+ D, [2015-10-23T05:33:29.749371 #34702] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"002ebe6a389c779b8be3f20da39643fc\", oauth_signature=\"4yIw7UM26LvvNGwzNEnAMw7On2o%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445592809\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
108
+ I, [2015-10-23T05:33:32.430457 #34702] INFO -- : HTTP 200
109
+ D, [2015-10-23T05:33:32.430695 #34702] DEBUG -- : "date: Fri, 23 Oct 2015 09:33:29 GMT\nvia: 1.1 ipp-gateway-ap05\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: d29bca01-dddb-4779-b53c-64d0308ca9c8\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:33:30.733-07:00\"}"
110
+ I, [2015-10-23T05:34:05.918560 #34725] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
111
+ D, [2015-10-23T05:34:05.918846 #34725] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"06475ac02b5c67e2574bb0d39eeeafcf\", oauth_signature=\"KLqLyktMGbgJb%2Fs%2F4su87ktywpM%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445592845\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
112
+ I, [2015-10-23T05:34:07.128216 #34725] INFO -- : HTTP 200
113
+ D, [2015-10-23T05:34:07.128502 #34725] DEBUG -- : "date: Fri, 23 Oct 2015 09:34:05 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: 03ad24c4-2fba-466c-a258-6a8cbd37b556\nvia: 1.1 ipp-gateway-ap05\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:34:05.572-07:00\"}"
114
+ I, [2015-10-23T05:34:31.537573 #34745] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
115
+ D, [2015-10-23T05:34:31.537869 #34745] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"caf30b61e0062509e2895f97b515dac7\", oauth_signature=\"jq0mb38etDMhRjD9Zjg%2FeWkY5uI%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445592871\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
116
+ I, [2015-10-23T05:34:32.722226 #34745] INFO -- : HTTP 200
117
+ D, [2015-10-23T05:34:32.722441 #34745] DEBUG -- : "date: Fri, 23 Oct 2015 09:34:31 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: d39c5367-0132-4ef8-aad5-2f5d1b9faeb7\nvia: 1.1 ipp-gateway-ap06\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:34:31.128-07:00\"}"
118
+ I, [2015-10-23T05:35:10.908255 #34772] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
119
+ D, [2015-10-23T05:35:10.908486 #34772] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"77b9b63369aaec5fec8ac24272d54a5f\", oauth_signature=\"O4Y8YI8OsKLRwcGYGkuuHj3BTY8%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445592910\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
120
+ I, [2015-10-23T05:35:12.736039 #34772] INFO -- : HTTP 200
121
+ D, [2015-10-23T05:35:12.736235 #34772] DEBUG -- : "date: Fri, 23 Oct 2015 09:35:11 GMT\nvia: 1.1 ipp-gateway-ap06\ncontent-type: application/json;charset=UTF-8\nintuit_tid: 9a9dc7b2-27e8-4c1b-b0de-72dbecde4b31\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:35:11.188-07:00\"}"
122
+ I, [2015-10-23T05:35:40.760561 #34802] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
123
+ D, [2015-10-23T05:35:40.760783 #34802] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"c59a8dfebbaf18b824f54eaf1ba2e44b\", oauth_signature=\"kDz%2BPVWlPfGgMDGqP2JxjQbxEpw%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445592940\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
124
+ I, [2015-10-23T05:35:41.992127 #34802] INFO -- : HTTP 200
125
+ D, [2015-10-23T05:35:41.992351 #34802] DEBUG -- : "date: Fri, 23 Oct 2015 09:35:40 GMT\nvia: 1.1 ipp-gateway-ap06\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: 933a35bb-1107-4532-aa0f-495bfa4904a7\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:35:40.430-07:00\"}"
126
+ I, [2015-10-23T05:36:15.591003 #34827] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
127
+ D, [2015-10-23T05:36:15.591330 #34827] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"d2b0ecd4aff58c364ad01dc7cb8d88ac\", oauth_signature=\"QK2mJeiIz%2F0YSqlHjYnlkmvhr4U%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445592975\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
128
+ I, [2015-10-23T05:36:16.729770 #34827] INFO -- : HTTP 200
129
+ D, [2015-10-23T05:36:16.729995 #34827] DEBUG -- : "date: Fri, 23 Oct 2015 09:36:15 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: 980b0d83-f7d7-4281-b9f6-6ad5c8b8b3a1\nvia: 1.1 ipp-gateway-ap06\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:36:15.183-07:00\"}"
130
+ I, [2015-10-23T05:36:38.004918 #34843] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
131
+ D, [2015-10-23T05:36:38.005180 #34843] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"0ad1ce96f513fa62f1c3bb7c75081ed2\", oauth_signature=\"k%2BNC3R%2FKsL%2BG%2FhWpe6wktFoYktY%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445592998\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
132
+ I, [2015-10-23T05:36:39.211048 #34843] INFO -- : HTTP 200
133
+ D, [2015-10-23T05:36:39.211262 #34843] DEBUG -- : "date: Fri, 23 Oct 2015 09:36:37 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: c10cc10d-682f-4e4e-b288-8c150e7ab78d\nvia: 1.1 ipp-gateway-ap06\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:36:37.653-07:00\"}"
134
+ I, [2015-10-23T05:38:41.720178 #34931] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
135
+ D, [2015-10-23T05:38:41.720403 #34931] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"0a6630bf31d1969b5532830cf5b2d3b2\", oauth_signature=\"9i1A2lWuwf7HRXtACWQlFPsxFP8%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593121\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
136
+ I, [2015-10-23T05:38:44.876446 #34931] INFO -- : HTTP 200
137
+ D, [2015-10-23T05:38:44.876718 #34931] DEBUG -- : "date: Fri, 23 Oct 2015 09:38:42 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: c581e601-e570-48b1-af42-de22d00e7b8d\nvia: 1.1 ipp-gateway-ap06\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:38:43.331-07:00\"}"
138
+ I, [2015-10-23T05:40:06.163258 #34986] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
139
+ D, [2015-10-23T05:40:06.163569 #34986] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"817274221e2b9bc13b974a23d3f6276f\", oauth_signature=\"RrU8zn69UXL05nH3jjKRR%2FaC3WU%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593206\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
140
+ I, [2015-10-23T05:40:07.132821 #34986] INFO -- : HTTP 200
141
+ D, [2015-10-23T05:40:07.133054 #34986] DEBUG -- : "date: Fri, 23 Oct 2015 09:40:05 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: d47a9587-1725-4384-a842-82d379e0f18b\nvia: 1.1 ipp-gateway-ap05\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:40:05.584-07:00\"}"
142
+ I, [2015-10-23T05:40:41.976682 #35010] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
143
+ D, [2015-10-23T05:40:41.976890 #35010] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"d658be853b419f6373237687b235cf7e\", oauth_signature=\"r3C7ubBcdfF4c%2B7d2HDAvfQ0pnI%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593241\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
144
+ I, [2015-10-23T05:40:43.183224 #35010] INFO -- : HTTP 200
145
+ D, [2015-10-23T05:40:43.183475 #35010] DEBUG -- : "date: Fri, 23 Oct 2015 09:40:41 GMT\nvia: 1.1 ipp-gateway-ap06\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: 58c7f13a-e44f-4722-a62b-0ea00d5ff70a\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:40:41.627-07:00\"}"
146
+ I, [2015-10-23T05:41:04.144070 #35024] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
147
+ D, [2015-10-23T05:41:04.144299 #35024] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"4c8946bf4d67f24ba99e43be2530f74e\", oauth_signature=\"sLfEf9ZTAG%2FMkXFpv3GC0H8thgs%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593264\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
148
+ I, [2015-10-23T05:41:05.269310 #35024] INFO -- : HTTP 200
149
+ D, [2015-10-23T05:41:05.269514 #35024] DEBUG -- : "date: Fri, 23 Oct 2015 09:41:03 GMT\nvia: 1.1 ipp-gateway-ap06\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: 1c4ba693-c43b-4765-bb2b-6a0483765ee7\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:41:03.727-07:00\"}"
150
+ I, [2015-10-23T05:41:44.299437 #35051] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
151
+ D, [2015-10-23T05:41:44.299690 #35051] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"04891ed2a91874c17ee198f081f6ec99\", oauth_signature=\"S6P9ZC6ZNpeLCNEiIzEX90FivZc%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593304\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
152
+ I, [2015-10-23T05:41:45.121515 #35051] INFO -- : HTTP 200
153
+ D, [2015-10-23T05:41:45.121724 #35051] DEBUG -- : "date: Fri, 23 Oct 2015 09:41:43 GMT\nvia: 1.1 ipp-gateway-ap05\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: a2754efa-608d-4b22-8742-016b51f158a8\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:41:43.563-07:00\"}"
154
+ I, [2015-10-23T05:42:31.446343 #35083] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
155
+ D, [2015-10-23T05:42:31.446566 #35083] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"dc7ab85d03f8f1f3462eab72d9f22ff9\", oauth_signature=\"OmZpnKsL1naIokUyK30nASgjuN8%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593351\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
156
+ I, [2015-10-23T05:42:33.521233 #35083] INFO -- : HTTP 200
157
+ D, [2015-10-23T05:42:33.521453 #35083] DEBUG -- : "date: Fri, 23 Oct 2015 09:42:31 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: 0ad8f9c4-dfb8-49cf-988a-8d596ef5d2b0\nvia: 1.1 ipp-gateway-ap05\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:42:31.972-07:00\"}"
158
+ I, [2015-10-23T05:42:55.952354 #35101] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/7
159
+ D, [2015-10-23T05:42:55.952571 #35101] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"9a806a846f592ed526d8ebfe3b17416f\", oauth_signature=\"kGOccsLHCpOkOfQ6Z18pM4XUdfk%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593375\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
160
+ I, [2015-10-23T05:42:57.124814 #35101] INFO -- : HTTP 200
161
+ D, [2015-10-23T05:42:57.125094 #35101] DEBUG -- : "date: Fri, 23 Oct 2015 09:42:55 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: 19b11469-a790-4008-a946-79b0642e176b\nvia: 1.1 ipp-gateway-ap06\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":false,\"BillAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"ShipAddr\":{\"Id\":\"7\",\"Line1\":\"370 Easy St.\",\"City\":\"Middlefield\",\"CountrySubDivisionCode\":\"CA\",\"PostalCode\":\"94482\",\"Lat\":\"37.4031672\",\"Long\":\"-122.0642815\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":562.50,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:57:10-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:15:36-07:00\"},\"GivenName\":\"Kirby\",\"FamilyName\":\"Freeman\",\"FullyQualifiedName\":\"Freeman Sporting Goods\",\"CompanyName\":\"Freeman Sporting Goods\",\"DisplayName\":\"Freeman Sporting Goods\",\"PrintOnCheckName\":\"Freeman Sporting Goods\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(650) 555-0987\"},\"Mobile\":{\"FreeFormNumber\":\"(973) 555-8849\"},\"Fax\":{\"FreeFormNumber\":\"(520) 555-7894\"},\"PrimaryEmailAddr\":{\"Address\":\"Sporting_goods@intuit.com\"},\"WebAddr\":{\"URI\":\"http://sportinggoods.intuit.com\"}},\"time\":\"2015-10-23T02:42:55.569-07:00\"}"
162
+ I, [2015-10-23T05:43:20.324934 #35119] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/5
163
+ D, [2015-10-23T05:43:20.325241 #35119] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"817baf1d54fae18f11688f2f2e285f45\", oauth_signature=\"2dPVUigqdnsD4DN%2Bz1kUg4TBeC8%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593400\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
164
+ I, [2015-10-23T05:43:21.529617 #35119] INFO -- : HTTP 200
165
+ D, [2015-10-23T05:43:21.529814 #35119] DEBUG -- : "date: Fri, 23 Oct 2015 09:43:19 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: fcefa65f-2ec1-42cb-8d2b-19bd8b41f2ed\nvia: 1.1 ipp-gateway-ap06\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":true,\"BillAddr\":{\"Id\":\"6\",\"Line1\":\"25 Court St.\",\"City\":\"Tucson\",\"CountrySubDivisionCode\":\"AZ\",\"PostalCode\":\"85719\",\"Lat\":\"32.2841116\",\"Long\":\"-110.9744298\"},\"ShipAddr\":{\"Id\":\"6\",\"Line1\":\"25 Court St.\",\"City\":\"Tucson\",\"CountrySubDivisionCode\":\"AZ\",\"PostalCode\":\"85719\",\"Lat\":\"32.2841116\",\"Long\":\"-110.9744298\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":0,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"5\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:54:59-07:00\",\"LastUpdatedTime\":\"2014-10-08T13:28:29-07:00\"},\"GivenName\":\"Peter\",\"FamilyName\":\"Dukes\",\"FullyQualifiedName\":\"Dukes Basketball Camp\",\"CompanyName\":\"Dukes Basketball Camp\",\"DisplayName\":\"Dukes Basketball Camp\",\"PrintOnCheckName\":\"Dukes Basketball Camp\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(520) 420-5638\"},\"PrimaryEmailAddr\":{\"Address\":\"Dukes_bball@intuit.com\"},\"DefaultTaxCodeRef\":{\"value\":\"2\"}},\"time\":\"2015-10-23T02:43:19.966-07:00\"}"
166
+ I, [2015-10-23T05:43:52.398586 #35140] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/5
167
+ D, [2015-10-23T05:43:52.398818 #35140] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"9d33debc463a99011dad4fba560d4e8a\", oauth_signature=\"hyODB%2FqB5mMeEAvg6fzibFHneIg%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593432\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
168
+ I, [2015-10-23T05:43:54.772875 #35140] INFO -- : HTTP 200
169
+ D, [2015-10-23T05:43:54.773073 #35140] DEBUG -- : "date: Fri, 23 Oct 2015 09:43:51 GMT\nvia: 1.1 ipp-gateway-ap06\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: 6ef92cc3-c31e-425c-ac07-9da6ce64ab28\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":true,\"BillAddr\":{\"Id\":\"6\",\"Line1\":\"25 Court St.\",\"City\":\"Tucson\",\"CountrySubDivisionCode\":\"AZ\",\"PostalCode\":\"85719\",\"Lat\":\"32.2841116\",\"Long\":\"-110.9744298\"},\"ShipAddr\":{\"Id\":\"6\",\"Line1\":\"25 Court St.\",\"City\":\"Tucson\",\"CountrySubDivisionCode\":\"AZ\",\"PostalCode\":\"85719\",\"Lat\":\"32.2841116\",\"Long\":\"-110.9744298\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":0,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"5\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:54:59-07:00\",\"LastUpdatedTime\":\"2014-10-08T13:28:29-07:00\"},\"GivenName\":\"Peter\",\"FamilyName\":\"Dukes\",\"FullyQualifiedName\":\"Dukes Basketball Camp\",\"CompanyName\":\"Dukes Basketball Camp\",\"DisplayName\":\"Dukes Basketball Camp\",\"PrintOnCheckName\":\"Dukes Basketball Camp\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(520) 420-5638\"},\"PrimaryEmailAddr\":{\"Address\":\"Dukes_bball@intuit.com\"},\"DefaultTaxCodeRef\":{\"value\":\"2\"}},\"time\":\"2015-10-23T02:43:53.185-07:00\"}"
170
+ I, [2015-10-23T05:44:14.880700 #35154] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/5
171
+ D, [2015-10-23T05:44:14.880926 #35154] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"86b30639c670d11bcc24cd00b15d368a\", oauth_signature=\"xpqPlswuucn6A9%2F7mAi1TQByqF0%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445593454\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
172
+ I, [2015-10-23T05:44:16.116545 #35154] INFO -- : HTTP 200
173
+ D, [2015-10-23T05:44:16.116740 #35154] DEBUG -- : "date: Fri, 23 Oct 2015 09:44:14 GMT\nvia: 1.1 ipp-gateway-ap06\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: 978ea3d0-ac9d-4f01-95e8-5044f648172b\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":true,\"BillAddr\":{\"Id\":\"6\",\"Line1\":\"25 Court St.\",\"City\":\"Tucson\",\"CountrySubDivisionCode\":\"AZ\",\"PostalCode\":\"85719\",\"Lat\":\"32.2841116\",\"Long\":\"-110.9744298\"},\"ShipAddr\":{\"Id\":\"6\",\"Line1\":\"25 Court St.\",\"City\":\"Tucson\",\"CountrySubDivisionCode\":\"AZ\",\"PostalCode\":\"85719\",\"Lat\":\"32.2841116\",\"Long\":\"-110.9744298\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":0,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"5\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:54:59-07:00\",\"LastUpdatedTime\":\"2014-10-08T13:28:29-07:00\"},\"GivenName\":\"Peter\",\"FamilyName\":\"Dukes\",\"FullyQualifiedName\":\"Dukes Basketball Camp\",\"CompanyName\":\"Dukes Basketball Camp\",\"DisplayName\":\"Dukes Basketball Camp\",\"PrintOnCheckName\":\"Dukes Basketball Camp\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(520) 420-5638\"},\"PrimaryEmailAddr\":{\"Address\":\"Dukes_bball@intuit.com\"},\"DefaultTaxCodeRef\":{\"value\":\"2\"}},\"time\":\"2015-10-23T02:44:14.462-07:00\"}"
174
+ I, [2015-10-23T05:53:48.804625 #35549] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/customer/5
175
+ D, [2015-10-23T05:53:48.804960 #35549] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"da9b0bd2bbe803e11233246fe7bea580\", oauth_signature=\"m2EU7%2Bi7uSHIJiLgBrM1hesIHa0%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445594028\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
176
+ I, [2015-10-23T05:53:51.299040 #35549] INFO -- : HTTP 200
177
+ D, [2015-10-23T05:53:51.299240 #35549] DEBUG -- : "date: Fri, 23 Oct 2015 09:53:48 GMT\nvia: 1.1 ipp-gateway-ap05\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: c8164340-8df8-44a5-8d3c-9e80d8d7dd65\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"Customer\":{\"Taxable\":true,\"BillAddr\":{\"Id\":\"6\",\"Line1\":\"25 Court St.\",\"City\":\"Tucson\",\"CountrySubDivisionCode\":\"AZ\",\"PostalCode\":\"85719\",\"Lat\":\"32.2841116\",\"Long\":\"-110.9744298\"},\"ShipAddr\":{\"Id\":\"6\",\"Line1\":\"25 Court St.\",\"City\":\"Tucson\",\"CountrySubDivisionCode\":\"AZ\",\"PostalCode\":\"85719\",\"Lat\":\"32.2841116\",\"Long\":\"-110.9744298\"},\"Job\":false,\"BillWithParent\":false,\"Balance\":0,\"BalanceWithJobs\":0,\"CurrencyRef\":{\"value\":\"USD\",\"name\":\"United States Dollar\"},\"PreferredDeliveryMethod\":\"Print\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"5\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-01T16:54:59-07:00\",\"LastUpdatedTime\":\"2014-10-08T13:28:29-07:00\"},\"GivenName\":\"Peter\",\"FamilyName\":\"Dukes\",\"FullyQualifiedName\":\"Dukes Basketball Camp\",\"CompanyName\":\"Dukes Basketball Camp\",\"DisplayName\":\"Dukes Basketball Camp\",\"PrintOnCheckName\":\"Dukes Basketball Camp\",\"Active\":true,\"PrimaryPhone\":{\"FreeFormNumber\":\"(520) 420-5638\"},\"PrimaryEmailAddr\":{\"Address\":\"Dukes_bball@intuit.com\"},\"DefaultTaxCodeRef\":{\"value\":\"2\"}},\"time\":\"2015-10-23T02:53:49.656-07:00\"}"
178
+ I, [2015-10-23T05:55:11.225065 #35604] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/query?query=select+%2A+from+item
179
+ D, [2015-10-23T05:55:11.225282 #35604] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"d524dd6d88a3ac998de6541aaa382195\", oauth_signature=\"FeDYDrIu0TXxNxHpgcJd4DRr2Cs%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445594111\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
180
+ I, [2015-10-23T05:55:12.132752 #35604] INFO -- : HTTP 200
181
+ D, [2015-10-23T05:55:12.133208 #35604] DEBUG -- : "date: Fri, 23 Oct 2015 09:55:10 GMT\ncontent-type: application/json;charset=UTF-8\nintuit_tid: 8f7a8c04-de10-4135-8e19-3f7896769804\nvia: 1.1 ipp-gateway-ap05\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"QueryResponse\":{\"Item\":[{\"Name\":\"Concrete\",\"Description\":\"Concrete for fountain installation\",\"Active\":true,\"FullyQualifiedName\":\"Concrete\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"3\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:36:03-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:47-07:00\"}},{\"Name\":\"Design\",\"Description\":\"Custom Design\",\"Active\":true,\"FullyQualifiedName\":\"Design\",\"Taxable\":false,\"UnitPrice\":75,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"82\",\"name\":\"Design income\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"4\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:41:38-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:41:38-07:00\"}},{\"Name\":\"Gardening\",\"Description\":\"Weekly Gardening Service\",\"Active\":true,\"FullyQualifiedName\":\"Gardening\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"45\",\"name\":\"Landscaping Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"6\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:43:14-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:43:14-07:00\"}},{\"Name\":\"Hours\",\"Active\":true,\"FullyQualifiedName\":\"Hours\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"1\",\"name\":\"Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"2\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T14:42:05-07:00\",\"LastUpdatedTime\":\"2014-10-01T14:42:05-07:00\"}},{\"Name\":\"Installation\",\"Description\":\"Installation of landscape design\",\"Active\":true,\"FullyQualifiedName\":\"Installation\",\"Taxable\":false,\"UnitPrice\":50,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"52\",\"name\":\"Landscaping Services:Labor:Installation\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:43:54-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:43:54-07:00\"}},{\"Name\":\"Lighting\",\"Description\":\"Garden Lighting\",\"Active\":true,\"FullyQualifiedName\":\"Lighting\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"8\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:44:40-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:38-07:00\"}},{\"Name\":\"Maintenance & Repair\",\"Description\":\"Maintenance & Repair\",\"Active\":true,\"FullyQualifiedName\":\"Maintenance & Repair\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"53\",\"name\":\"Landscaping Services:Labor:Maintenance and Repair\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"9\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:45:18-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:45:18-07:00\"}},{\"Name\":\"Pest Control\",\"Description\":\"Pest Control Services\",\"Active\":true,\"FullyQualifiedName\":\"Pest Control\",\"Taxable\":false,\"UnitPrice\":35,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"54\",\"name\":\"Pest Control Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"10\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:45:49-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:45:49-07:00\"}},{\"Name\":\"Pump\",\"Description\":\"Fountain Pump\",\"Active\":true,\"FullyQualifiedName\":\"Pump\",\"Taxable\":true,\"UnitPrice\":15,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Fountain Pump\",\"PurchaseCost\":10,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":25,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"11\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:46:45-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:16:17-07:00\"}},{\"Name\":\"Refunds & Allowances\",\"Description\":\"Income due to refunds or allowances\",\"Active\":true,\"FullyQualifiedName\":\"Refunds & Allowances\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"83\",\"name\":\"Other Income\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"12\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:49:18-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:49:18-07:00\"}},{\"Name\":\"Rock Fountain\",\"Description\":\"Rock Fountain\",\"Active\":true,\"FullyQualifiedName\":\"Rock Fountain\",\"Taxable\":true,\"UnitPrice\":275,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Rock Fountain\",\"PurchaseCost\":125,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":2,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"5\",\"SyncToken\":\"2\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:42:19-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:16:17-07:00\"}},{\"Name\":\"Rocks\",\"Description\":\"Garden Rocks\",\"Active\":true,\"FullyQualifiedName\":\"Rocks\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"13\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:50:11-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:31-07:00\"}},{\"Name\":\"Services\",\"Active\":true,\"FullyQualifiedName\":\"Services\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"1\",\"name\":\"Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"1\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T14:42:05-07:00\",\"LastUpdatedTime\":\"2014-10-01T14:42:05-07:00\"}},{\"Name\":\"Sod\",\"Description\":\"Sod\",\"Active\":true,\"FullyQualifiedName\":\"Sod\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"49\",\"name\":\"Landscaping Services:Job Materials:Plants and Soil\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"14\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:50:45-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:22-07:00\"}},{\"Name\":\"Soil\",\"Description\":\"2 cubic ft. bag\",\"Active\":true,\"FullyQualifiedName\":\"Soil\",\"Taxable\":true,\"UnitPrice\":10,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"49\",\"name\":\"Landscaping Services:Job Materials:Plants and Soil\"},\"PurchaseDesc\":\"2 cubic ft. bag\",\"PurchaseCost\":6.5,\"ExpenseAccountRef\":{\"value\":\"66\",\"name\":\"Job Expenses:Job Materials:Plants and Soil\"},\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"15\",\"SyncToken\":\"2\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:51:28-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:25-07:00\"}},{\"Name\":\"Sprinkler Heads\",\"Description\":\"Sprinkler Heads\",\"Active\":true,\"FullyQualifiedName\":\"Sprinkler Heads\",\"Taxable\":true,\"UnitPrice\":2,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Sprinkler Heads\",\"PurchaseCost\":0.75,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":25,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"16\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:51:50-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:51:47-07:00\"}},{\"Name\":\"Sprinkler Pipes\",\"Description\":\"Sprinkler Pipes\",\"Active\":true,\"FullyQualifiedName\":\"Sprinkler Pipes\",\"Taxable\":true,\"UnitPrice\":4,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Sprinkler Pipes\",\"PurchaseCost\":2.5,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":31,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"17\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:52:07-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:57:24-07:00\"}},{\"Name\":\"Trimming\",\"Description\":\"Tree and Shrub Trimming\",\"Active\":true,\"FullyQualifiedName\":\"Trimming\",\"Taxable\":false,\"UnitPrice\":35,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"45\",\"name\":\"Landscaping Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"18\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:52:42-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:52:42-07:00\"}}],\"startPosition\":1,\"maxResults\":18},\"time\":\"2015-10-23T02:55:10.541-07:00\"}"
182
+ I, [2015-10-23T05:55:39.953976 #35624] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/query?query=select+%2A+from+item
183
+ D, [2015-10-23T05:55:39.954327 #35624] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"01a4f5d9b1c13ef012538b7a094e73b9\", oauth_signature=\"i8LaFKxyiXAssXhyedbB3MPmk%2BE%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445594139\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
184
+ I, [2015-10-23T05:55:41.111458 #35624] INFO -- : HTTP 200
185
+ D, [2015-10-23T05:55:41.111832 #35624] DEBUG -- : "date: Fri, 23 Oct 2015 09:55:39 GMT\nvia: 1.1 ipp-gateway-ap06\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: 46240e1d-c3bf-478d-895e-17d1210b1ebe\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"QueryResponse\":{\"Item\":[{\"Name\":\"Concrete\",\"Description\":\"Concrete for fountain installation\",\"Active\":true,\"FullyQualifiedName\":\"Concrete\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"3\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:36:03-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:47-07:00\"}},{\"Name\":\"Design\",\"Description\":\"Custom Design\",\"Active\":true,\"FullyQualifiedName\":\"Design\",\"Taxable\":false,\"UnitPrice\":75,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"82\",\"name\":\"Design income\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"4\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:41:38-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:41:38-07:00\"}},{\"Name\":\"Gardening\",\"Description\":\"Weekly Gardening Service\",\"Active\":true,\"FullyQualifiedName\":\"Gardening\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"45\",\"name\":\"Landscaping Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"6\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:43:14-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:43:14-07:00\"}},{\"Name\":\"Hours\",\"Active\":true,\"FullyQualifiedName\":\"Hours\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"1\",\"name\":\"Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"2\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T14:42:05-07:00\",\"LastUpdatedTime\":\"2014-10-01T14:42:05-07:00\"}},{\"Name\":\"Installation\",\"Description\":\"Installation of landscape design\",\"Active\":true,\"FullyQualifiedName\":\"Installation\",\"Taxable\":false,\"UnitPrice\":50,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"52\",\"name\":\"Landscaping Services:Labor:Installation\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:43:54-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:43:54-07:00\"}},{\"Name\":\"Lighting\",\"Description\":\"Garden Lighting\",\"Active\":true,\"FullyQualifiedName\":\"Lighting\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"8\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:44:40-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:38-07:00\"}},{\"Name\":\"Maintenance & Repair\",\"Description\":\"Maintenance & Repair\",\"Active\":true,\"FullyQualifiedName\":\"Maintenance & Repair\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"53\",\"name\":\"Landscaping Services:Labor:Maintenance and Repair\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"9\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:45:18-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:45:18-07:00\"}},{\"Name\":\"Pest Control\",\"Description\":\"Pest Control Services\",\"Active\":true,\"FullyQualifiedName\":\"Pest Control\",\"Taxable\":false,\"UnitPrice\":35,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"54\",\"name\":\"Pest Control Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"10\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:45:49-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:45:49-07:00\"}},{\"Name\":\"Pump\",\"Description\":\"Fountain Pump\",\"Active\":true,\"FullyQualifiedName\":\"Pump\",\"Taxable\":true,\"UnitPrice\":15,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Fountain Pump\",\"PurchaseCost\":10,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":25,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"11\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:46:45-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:16:17-07:00\"}},{\"Name\":\"Refunds & Allowances\",\"Description\":\"Income due to refunds or allowances\",\"Active\":true,\"FullyQualifiedName\":\"Refunds & Allowances\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"83\",\"name\":\"Other Income\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"12\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:49:18-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:49:18-07:00\"}},{\"Name\":\"Rock Fountain\",\"Description\":\"Rock Fountain\",\"Active\":true,\"FullyQualifiedName\":\"Rock Fountain\",\"Taxable\":true,\"UnitPrice\":275,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Rock Fountain\",\"PurchaseCost\":125,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":2,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"5\",\"SyncToken\":\"2\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:42:19-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:16:17-07:00\"}},{\"Name\":\"Rocks\",\"Description\":\"Garden Rocks\",\"Active\":true,\"FullyQualifiedName\":\"Rocks\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"13\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:50:11-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:31-07:00\"}},{\"Name\":\"Services\",\"Active\":true,\"FullyQualifiedName\":\"Services\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"1\",\"name\":\"Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"1\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T14:42:05-07:00\",\"LastUpdatedTime\":\"2014-10-01T14:42:05-07:00\"}},{\"Name\":\"Sod\",\"Description\":\"Sod\",\"Active\":true,\"FullyQualifiedName\":\"Sod\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"49\",\"name\":\"Landscaping Services:Job Materials:Plants and Soil\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"14\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:50:45-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:22-07:00\"}},{\"Name\":\"Soil\",\"Description\":\"2 cubic ft. bag\",\"Active\":true,\"FullyQualifiedName\":\"Soil\",\"Taxable\":true,\"UnitPrice\":10,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"49\",\"name\":\"Landscaping Services:Job Materials:Plants and Soil\"},\"PurchaseDesc\":\"2 cubic ft. bag\",\"PurchaseCost\":6.5,\"ExpenseAccountRef\":{\"value\":\"66\",\"name\":\"Job Expenses:Job Materials:Plants and Soil\"},\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"15\",\"SyncToken\":\"2\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:51:28-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:25-07:00\"}},{\"Name\":\"Sprinkler Heads\",\"Description\":\"Sprinkler Heads\",\"Active\":true,\"FullyQualifiedName\":\"Sprinkler Heads\",\"Taxable\":true,\"UnitPrice\":2,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Sprinkler Heads\",\"PurchaseCost\":0.75,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":25,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"16\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:51:50-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:51:47-07:00\"}},{\"Name\":\"Sprinkler Pipes\",\"Description\":\"Sprinkler Pipes\",\"Active\":true,\"FullyQualifiedName\":\"Sprinkler Pipes\",\"Taxable\":true,\"UnitPrice\":4,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Sprinkler Pipes\",\"PurchaseCost\":2.5,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":31,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"17\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:52:07-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:57:24-07:00\"}},{\"Name\":\"Trimming\",\"Description\":\"Tree and Shrub Trimming\",\"Active\":true,\"FullyQualifiedName\":\"Trimming\",\"Taxable\":false,\"UnitPrice\":35,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"45\",\"name\":\"Landscaping Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"18\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:52:42-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:52:42-07:00\"}}],\"startPosition\":1,\"maxResults\":18},\"time\":\"2015-10-23T02:55:39.540-07:00\"}"
186
+ I, [2015-10-23T05:58:27.151356 #35734] INFO -- : GET https://sandbox-quickbooks.api.intuit.com/v3/company/1292740145/query?query=select+%2A+from+item
187
+ D, [2015-10-23T05:58:27.151565 #35734] DEBUG -- : "Content-Type: application/json\nAccept: application/json; charset=utf-8\nUser-Agent: Faraday v0.9.2\nAuthorization: OAuth oauth_consumer_key=\"qyprdPPYbS5JlBUhhdCe3GKP5Gs9zr\", oauth_nonce=\"42c7de2a4125ca6e659905710d928e0a\", oauth_signature=\"WDPHqQ8OGo%2FhujHz4%2BEwwvQZYYA%3D\", oauth_signature_method=\"HMAC-SHA1\", oauth_timestamp=\"1445594307\", oauth_token=\"qyprddrRqqlLirC7axWAIgmO30EtctshESft8Oytd5w0pYGg\", oauth_version=\"1.0\"\n\n"
188
+ I, [2015-10-23T05:58:27.970363 #35734] INFO -- : HTTP 200
189
+ D, [2015-10-23T05:58:27.970738 #35734] DEBUG -- : "date: Fri, 23 Oct 2015 09:58:26 GMT\nvia: 1.1 ipp-gateway-ap06\ncontent-type: application/json;charset=UTF-8\ncache-control: max-age=0, no-cache, no-store, must-revalidate, private\nexpires: 0\nintuit_tid: 633e0998-595b-41b8-89c3-8655e38c2f95\nqbo-version: 1510.274\nconnection: close\ntransfer-encoding: chunked\n\n{\"QueryResponse\":{\"Item\":[{\"Name\":\"Concrete\",\"Description\":\"Concrete for fountain installation\",\"Active\":true,\"FullyQualifiedName\":\"Concrete\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"3\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:36:03-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:47-07:00\"}},{\"Name\":\"Design\",\"Description\":\"Custom Design\",\"Active\":true,\"FullyQualifiedName\":\"Design\",\"Taxable\":false,\"UnitPrice\":75,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"82\",\"name\":\"Design income\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"4\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:41:38-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:41:38-07:00\"}},{\"Name\":\"Gardening\",\"Description\":\"Weekly Gardening Service\",\"Active\":true,\"FullyQualifiedName\":\"Gardening\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"45\",\"name\":\"Landscaping Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"6\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:43:14-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:43:14-07:00\"}},{\"Name\":\"Hours\",\"Active\":true,\"FullyQualifiedName\":\"Hours\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"1\",\"name\":\"Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"2\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T14:42:05-07:00\",\"LastUpdatedTime\":\"2014-10-01T14:42:05-07:00\"}},{\"Name\":\"Installation\",\"Description\":\"Installation of landscape design\",\"Active\":true,\"FullyQualifiedName\":\"Installation\",\"Taxable\":false,\"UnitPrice\":50,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"52\",\"name\":\"Landscaping Services:Labor:Installation\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"7\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:43:54-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:43:54-07:00\"}},{\"Name\":\"Lighting\",\"Description\":\"Garden Lighting\",\"Active\":true,\"FullyQualifiedName\":\"Lighting\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"8\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:44:40-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:38-07:00\"}},{\"Name\":\"Maintenance & Repair\",\"Description\":\"Maintenance & Repair\",\"Active\":true,\"FullyQualifiedName\":\"Maintenance & Repair\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"53\",\"name\":\"Landscaping Services:Labor:Maintenance and Repair\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"9\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:45:18-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:45:18-07:00\"}},{\"Name\":\"Pest Control\",\"Description\":\"Pest Control Services\",\"Active\":true,\"FullyQualifiedName\":\"Pest Control\",\"Taxable\":false,\"UnitPrice\":35,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"54\",\"name\":\"Pest Control Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"10\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:45:49-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:45:49-07:00\"}},{\"Name\":\"Pump\",\"Description\":\"Fountain Pump\",\"Active\":true,\"FullyQualifiedName\":\"Pump\",\"Taxable\":true,\"UnitPrice\":15,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Fountain Pump\",\"PurchaseCost\":10,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":25,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"11\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:46:45-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:16:17-07:00\"}},{\"Name\":\"Refunds & Allowances\",\"Description\":\"Income due to refunds or allowances\",\"Active\":true,\"FullyQualifiedName\":\"Refunds & Allowances\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"83\",\"name\":\"Other Income\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"12\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:49:18-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:49:18-07:00\"}},{\"Name\":\"Rock Fountain\",\"Description\":\"Rock Fountain\",\"Active\":true,\"FullyQualifiedName\":\"Rock Fountain\",\"Taxable\":true,\"UnitPrice\":275,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Rock Fountain\",\"PurchaseCost\":125,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":2,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"5\",\"SyncToken\":\"2\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:42:19-07:00\",\"LastUpdatedTime\":\"2014-10-09T13:16:17-07:00\"}},{\"Name\":\"Rocks\",\"Description\":\"Garden Rocks\",\"Active\":true,\"FullyQualifiedName\":\"Rocks\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"48\",\"name\":\"Landscaping Services:Job Materials:Fountains and Garden Lighting\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"13\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:50:11-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:31-07:00\"}},{\"Name\":\"Services\",\"Active\":true,\"FullyQualifiedName\":\"Services\",\"Taxable\":false,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"1\",\"name\":\"Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"1\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-01T14:42:05-07:00\",\"LastUpdatedTime\":\"2014-10-01T14:42:05-07:00\"}},{\"Name\":\"Sod\",\"Description\":\"Sod\",\"Active\":true,\"FullyQualifiedName\":\"Sod\",\"Taxable\":true,\"UnitPrice\":0,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"49\",\"name\":\"Landscaping Services:Job Materials:Plants and Soil\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"14\",\"SyncToken\":\"1\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:50:45-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:22-07:00\"}},{\"Name\":\"Soil\",\"Description\":\"2 cubic ft. bag\",\"Active\":true,\"FullyQualifiedName\":\"Soil\",\"Taxable\":true,\"UnitPrice\":10,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"49\",\"name\":\"Landscaping Services:Job Materials:Plants and Soil\"},\"PurchaseDesc\":\"2 cubic ft. bag\",\"PurchaseCost\":6.5,\"ExpenseAccountRef\":{\"value\":\"66\",\"name\":\"Job Expenses:Job Materials:Plants and Soil\"},\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"15\",\"SyncToken\":\"2\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:51:28-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:47:25-07:00\"}},{\"Name\":\"Sprinkler Heads\",\"Description\":\"Sprinkler Heads\",\"Active\":true,\"FullyQualifiedName\":\"Sprinkler Heads\",\"Taxable\":true,\"UnitPrice\":2,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Sprinkler Heads\",\"PurchaseCost\":0.75,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":25,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"16\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:51:50-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:51:47-07:00\"}},{\"Name\":\"Sprinkler Pipes\",\"Description\":\"Sprinkler Pipes\",\"Active\":true,\"FullyQualifiedName\":\"Sprinkler Pipes\",\"Taxable\":true,\"UnitPrice\":4,\"Type\":\"Inventory\",\"IncomeAccountRef\":{\"value\":\"79\",\"name\":\"Sales of Product Income\"},\"PurchaseDesc\":\"Sprinkler Pipes\",\"PurchaseCost\":2.5,\"ExpenseAccountRef\":{\"value\":\"80\",\"name\":\"Cost of Goods Sold\"},\"AssetAccountRef\":{\"value\":\"81\",\"name\":\"Inventory Asset\"},\"TrackQtyOnHand\":true,\"QtyOnHand\":31,\"InvStartDate\":\"2014-10-09\",\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"17\",\"SyncToken\":\"3\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:52:07-07:00\",\"LastUpdatedTime\":\"2014-10-09T12:57:24-07:00\"}},{\"Name\":\"Trimming\",\"Description\":\"Tree and Shrub Trimming\",\"Active\":true,\"FullyQualifiedName\":\"Trimming\",\"Taxable\":false,\"UnitPrice\":35,\"Type\":\"Service\",\"IncomeAccountRef\":{\"value\":\"45\",\"name\":\"Landscaping Services\"},\"PurchaseCost\":0,\"TrackQtyOnHand\":false,\"domain\":\"QBO\",\"sparse\":false,\"Id\":\"18\",\"SyncToken\":\"0\",\"MetaData\":{\"CreateTime\":\"2014-10-06T10:52:42-07:00\",\"LastUpdatedTime\":\"2014-10-06T10:52:42-07:00\"}}],\"startPosition\":1,\"maxResults\":18},\"time\":\"2015-10-23T02:58:26.428-07:00\"}"