qbo_api 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/README.md +38 -15
- data/example/app.rb +1 -1
- data/example/views/customer.erb +1 -1
- data/lib/qbo_api.rb +18 -9
- data/lib/qbo_api/version.rb +1 -1
- metadata +2 -3
- data/example/app.log +0 -189
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75ebf34a99af284ed063c84228d3b1ddcfff3f2e
|
|
4
|
+
data.tar.gz: 8cccbbf2339e2469cd1b9d36ebdb1fea578569c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2e05d83c0d89db9f6a554bbd2d5b36c0a22d5e1370e6a2ba8ba2327eb7b88e8f74e25bc8a5eaaaab05a36ab674fdeb9c9495c63a31e2034c6862a3be7e34d1f
|
|
7
|
+
data.tar.gz: 907d9fda2554582e70647cab5b8da130f721ffc71e07192ed6915dff3e95028ac24f92ace2f77d73dfe5c100bfa4574932957ee52d74ffc995bf5530232c0586
|
data/.gitignore
CHANGED
data/README.md
CHANGED
|
@@ -7,6 +7,12 @@ Ruby client for the QuickBooks Online API version 3.
|
|
|
7
7
|
- Features specs built directly against a QuickBooks Online Sandbox via the VCR gem.
|
|
8
8
|
- Robust error handling.
|
|
9
9
|
|
|
10
|
+
## Tutorials and Screencasts
|
|
11
|
+
- <a href="http://minimul.com/introducing-a-new-ruby-quickbooks-online-client.html" target="_blank">Why qbo_api is a better choice </a> than the <a href="https://github.com/ruckus/quickbooks-ruby" target="_blank">quickbooks-ruby</a> gem.
|
|
12
|
+
- <a href="http://minimul.com/getting-started-with-the-modern-ruby-quickbooks-online-client-qbo_api-part-1.html" target="_blank">Part 1</a>: Learn how to spin up the <a href="https://github.com/minimul/qbo_api#spin-up-an-example">example app</a>.
|
|
13
|
+
- <a href="http://minimul.com/the-modern-ruby-quickbooks-client-part-2.html" target="_blank">Part 2</a>: <a href="https://github.com/minimul/qbo_api#running-the-specs">Running the specs</a> to aid you in understanding a QuickBooks API transaction.
|
|
14
|
+
- <a href="http://minimul.com/the-modern-ruby-quickbooks-client-contributing.html" target="_blank">Part 3</a>: <a href="https://github.com/minimul/qbo_api#creating-new-specs-or-modifying-existing-spec-that-have-been-recorded-using-the-vcr-gem">Contributing to the gem</a>.
|
|
15
|
+
|
|
10
16
|
## Ruby >= 2.2.2 required
|
|
11
17
|
|
|
12
18
|
## Installation
|
|
@@ -99,6 +105,14 @@ QboApi.logger = Rails.logger
|
|
|
99
105
|
p response['DisplayName'] # => "Dukes Basketball Camp"
|
|
100
106
|
```
|
|
101
107
|
|
|
108
|
+
### Change data capture (CDC) query
|
|
109
|
+
```ruby
|
|
110
|
+
response = api.cdc('estimate&changedSince=2011-10-10T09:00:00-07:00')
|
|
111
|
+
expect(response['CDCResponse'].size).to eq 1
|
|
112
|
+
ids = response['CDCResponse'][0]['QueryResponse'][0]['Estimate'].collect{ |e| e['Id'] }
|
|
113
|
+
p ids
|
|
114
|
+
```
|
|
115
|
+
|
|
102
116
|
### Respond to an error
|
|
103
117
|
```ruby
|
|
104
118
|
customer = { DisplayName: 'Weiskopf Consulting' }
|
|
@@ -141,41 +155,50 @@ QboApi.logger = Rails.logger
|
|
|
141
155
|
```
|
|
142
156
|
|
|
143
157
|
## Spin up an example
|
|
144
|
-
-
|
|
145
|
-
- cd qbo_api
|
|
158
|
+
- <a href="http://minimul.com/getting-started-with-the-modern-ruby-quickbooks-online-client-qbo_api-part-1.html" target="_blank">Check out this tutorial and screencast on spinning up an example</a>.
|
|
159
|
+
- `git clone git://github.com/minimul/qbo_api && cd qbo_api`
|
|
160
|
+
- `bundle`
|
|
146
161
|
- Create a `.env` file
|
|
147
|
-
-
|
|
162
|
+
- If needed create an account at [https://developer.intuit.com](https://developer.intuit.com)
|
|
163
|
+
- Click `Get started coding`
|
|
164
|
+
- Create an app with both the `Accounting` & `Payments` selected.
|
|
165
|
+
- Go to the `Development` tab and copy and paste the consumer key and secret into the `.env` file.
|
|
148
166
|
```ruby
|
|
149
167
|
export QBO_API_CONSUMER_KEY=<Your QuickBooks apps consumer key>
|
|
150
168
|
export QBO_API_CONSUMER_SECRET=<Your QuickBooks apps consumer secret>
|
|
151
169
|
```
|
|
170
|
+
- Note: the `.env` file will be automatically loaded after you run the next step.
|
|
171
|
+
- Start up the example app
|
|
172
|
+
- `ruby example/app.rb`
|
|
152
173
|
- Goto `http://localhost:9393`
|
|
153
174
|
- 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
175
|
- After successfully connecting to your sandbox run:
|
|
155
176
|
- `http://localhost:9393/customer/5`
|
|
156
177
|
- You should see "Dukes Basketball Camp" displayed
|
|
157
|
-
- Checkout
|
|
178
|
+
- Checkout [`example/app.rb`](https://github.com/minimul/qbo_api/blob/master/example/app.rb) to see what is going on under the hood.
|
|
158
179
|
|
|
159
180
|
## Contributing
|
|
160
181
|
|
|
161
182
|
Bug reports and pull requests are welcome on GitHub at https://github.com/minimul/qbo_api.
|
|
162
183
|
|
|
163
184
|
#### Running the specs
|
|
164
|
-
-
|
|
165
|
-
|
|
185
|
+
- <a href="http://minimul.com/the-modern-ruby-quickbooks-client-part-2.html" target="_blank">Check out this tutorial and screencast on running the specs</a>
|
|
186
|
+
- `git clone git://github.com/minimul/qbo_api && cd qbo_api`
|
|
187
|
+
- `bundle`
|
|
188
|
+
- Create a `.env` file
|
|
189
|
+
- If you are just running the specs then at minimum your `.env` needs to look like the following:
|
|
166
190
|
```ruby
|
|
167
|
-
export QBO_API_CONSUMER_KEY
|
|
168
|
-
export QBO_API_CONSUMER_SECRET
|
|
169
|
-
export QBO_API_ACCESS_TOKEN
|
|
170
|
-
export QBO_API_ACCESS_TOKEN_SECRET
|
|
171
|
-
export QBO_API_COMPANY_ID
|
|
191
|
+
export QBO_API_CONSUMER_KEY=
|
|
192
|
+
export QBO_API_CONSUMER_SECRET=
|
|
193
|
+
export QBO_API_ACCESS_TOKEN=
|
|
194
|
+
export QBO_API_ACCESS_TOKEN_SECRET=
|
|
195
|
+
export QBO_API_COMPANY_ID=12345
|
|
172
196
|
```
|
|
173
|
-
-
|
|
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`
|
|
197
|
+
- `bundle exec rspec spec/`
|
|
176
198
|
|
|
177
199
|
#### 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.
|
|
200
|
+
- All specs that require interaction with the API must be recorded against your personal QuickBooks sandbox. More coming on how to create or modifying existing specs against your sandbox.
|
|
201
|
+
- <a href="http://minimul.com/the-modern-ruby-quickbooks-client-contributing.html" target="_blank">Check out this tutorial and screencast on contributing to qbo_api</a>.
|
|
179
202
|
|
|
180
203
|
## License
|
|
181
204
|
|
data/example/app.rb
CHANGED
data/example/views/customer.erb
CHANGED
data/lib/qbo_api.rb
CHANGED
|
@@ -51,6 +51,11 @@ class QboApi
|
|
|
51
51
|
request(:get, entity: entity, path: path)
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
def cdc(query)
|
|
55
|
+
path = "#{realm_id}/cdc?entities=#{query}"
|
|
56
|
+
request(:get, path: path)
|
|
57
|
+
end
|
|
58
|
+
|
|
54
59
|
def get(entity, id)
|
|
55
60
|
path = "#{realm_id}/#{entity.to_s}/#{id}"
|
|
56
61
|
request(:get, entity: entity, path: path)
|
|
@@ -96,7 +101,7 @@ class QboApi
|
|
|
96
101
|
end while (results ? results.size == max : false)
|
|
97
102
|
end
|
|
98
103
|
|
|
99
|
-
def request(method,
|
|
104
|
+
def request(method, path:, entity: nil, payload: nil)
|
|
100
105
|
raw_response = connection.send(method) do |req|
|
|
101
106
|
case method
|
|
102
107
|
when :get, :delete
|
|
@@ -110,19 +115,15 @@ class QboApi
|
|
|
110
115
|
end
|
|
111
116
|
|
|
112
117
|
def response(resp, entity: nil)
|
|
113
|
-
|
|
118
|
+
data = JSON.parse(resp.body)
|
|
114
119
|
if entity
|
|
115
|
-
|
|
116
|
-
qr.empty? ? nil : qr.fetch(singular(entity))
|
|
117
|
-
else
|
|
118
|
-
j.fetch(singular(entity))
|
|
119
|
-
end
|
|
120
|
+
entity_response(data, entity)
|
|
120
121
|
else
|
|
121
|
-
|
|
122
|
+
data
|
|
122
123
|
end
|
|
123
124
|
rescue => e
|
|
124
125
|
# Catch fetch key errors and just return JSON
|
|
125
|
-
|
|
126
|
+
data
|
|
126
127
|
end
|
|
127
128
|
|
|
128
129
|
def esc(query)
|
|
@@ -131,6 +132,14 @@ class QboApi
|
|
|
131
132
|
|
|
132
133
|
private
|
|
133
134
|
|
|
135
|
+
def entity_response(data, entity)
|
|
136
|
+
if qr = data['QueryResponse']
|
|
137
|
+
qr.empty? ? nil : qr.fetch(singular(entity))
|
|
138
|
+
else
|
|
139
|
+
data.fetch(singular(entity))
|
|
140
|
+
end
|
|
141
|
+
end
|
|
142
|
+
|
|
134
143
|
def oauth_data
|
|
135
144
|
{
|
|
136
145
|
consumer_key: @consumer_key,
|
data/lib/qbo_api/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qbo_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Pelczarski
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-03-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -221,7 +221,6 @@ files:
|
|
|
221
221
|
- Rakefile
|
|
222
222
|
- bin/console
|
|
223
223
|
- bin/setup
|
|
224
|
-
- example/app.log
|
|
225
224
|
- example/app.rb
|
|
226
225
|
- example/views/customer.erb
|
|
227
226
|
- example/views/index.erb
|
data/example/app.log
DELETED
|
@@ -1,189 +0,0 @@
|
|
|
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 & Repair</Name><Description>Maintenance & Repair</Description><Active>true</Active><FullyQualifiedName>Maintenance & 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 & Allowances</Name><Description>Income due to refunds or allowances</Description><Active>true</Active><FullyQualifiedName>Refunds & 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 & Repair</Name><Description>Maintenance & Repair</Description><Active>true</Active><FullyQualifiedName>Maintenance & 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 & Allowances</Name><Description>Income due to refunds or allowances</Description><Active>true</Active><FullyQualifiedName>Refunds & 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 & Repair</Name><Description>Maintenance & Repair</Description><Active>true</Active><FullyQualifiedName>Maintenance & 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 & Allowances</Name><Description>Income due to refunds or allowances</Description><Active>true</Active><FullyQualifiedName>Refunds & 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 & Repair</Name><Description>Maintenance & Repair</Description><Active>true</Active><FullyQualifiedName>Maintenance & 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 & Allowances</Name><Description>Income due to refunds or allowances</Description><Active>true</Active><FullyQualifiedName>Refunds & 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\"}"
|