zuora_rest_client 1.2.1 → 1.2.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +1 -1
  3. data/lib/zuora_rest_client/client.rb +1 -1
  4. data/lib/zuora_rest_client/connection.rb +0 -1
  5. data/lib/zuora_rest_client/version.rb +1 -1
  6. metadata +27 -58
  7. data/.gitignore +0 -54
  8. data/.rspec +0 -2
  9. data/.travis.yml +0 -5
  10. data/Gemfile +0 -4
  11. data/Rakefile +0 -6
  12. data/fixtures/vcr_cassettes/zuora/create_account_object_success.yml +0 -51
  13. data/fixtures/vcr_cassettes/zuora/create_account_success.yml +0 -66
  14. data/fixtures/vcr_cassettes/zuora/delete_account_object_success.yml +0 -191
  15. data/fixtures/vcr_cassettes/zuora/describe_account.yml +0 -588
  16. data/fixtures/vcr_cassettes/zuora/describe_account_related_objects.yml +0 -588
  17. data/fixtures/vcr_cassettes/zuora/describe_all_account_fields.yml +0 -588
  18. data/fixtures/vcr_cassettes/zuora/describe_all_zobjects.yml +0 -171
  19. data/fixtures/vcr_cassettes/zuora/describe_exportable_account_fields.yml +0 -588
  20. data/fixtures/vcr_cassettes/zuora/describe_non_exportable_account_fields.yml +0 -588
  21. data/fixtures/vcr_cassettes/zuora/describe_non_updateable_account_fields.yml +0 -588
  22. data/fixtures/vcr_cassettes/zuora/describe_updateable_account_fields.yml +0 -588
  23. data/fixtures/vcr_cassettes/zuora/get_account_object_success.yml +0 -52
  24. data/fixtures/vcr_cassettes/zuora/get_account_success.yml +0 -152
  25. data/fixtures/vcr_cassettes/zuora/get_account_summary_success.yml +0 -140
  26. data/fixtures/vcr_cassettes/zuora/update_account_object_success.yml +0 -99
  27. data/fixtures/vcr_cassettes/zuora/update_account_success.yml +0 -208
  28. data/zuora_rest_client.gemspec +0 -45
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 230655eb1ae9f88158912d2dab9eb374188b60f6975826e89d2491650947d175
4
- data.tar.gz: 7635eb7f9001c4aea985fff8573d5892a565f6fddd2297ed5a8af7b3b904a1f8
3
+ metadata.gz: b558b8c13c32562a9b1a7d80a70506b16ed205f8d76db8a3ee8c047689aa570c
4
+ data.tar.gz: c7f32c6fd5e3ea6bc99c0e2de30d131b83f6c20596d067e6099cb8a753a8d430
5
5
  SHA512:
6
- metadata.gz: a26f495b52251666f1e72140f6488d4274ef745f9e8faa2a46729c40d5e94687fdcfe6f6eae79d8be3de99eb1991d55149dd8b744b1792ae03e393a20cbbf2d9
7
- data.tar.gz: 135ac0c3b2c3e0ab9e6be0ed50f9ff1d2e330ccdba44b4b0713d3b9cd71d6e2e51a415d14aa89a726424c5c7aafca93bd5df2b985b678ec0c85c4f8046e29a1c
6
+ metadata.gz: 119115fc601a9e7ed405145fbfb35eaf18bf254d234f7b8fd69c4115cdd7e6f51fd4af2c57f401f17970617c0f17f98c4a28e4e559f0af1586baf3e45fbd32fd
7
+ data.tar.gz: e3099dd3f4d6f6db5559fca838bfe00e163feec2a31ff83796064ff8bc038ba945d708fa83ebe2b8303f7f662ffbb67d52123caad602337fdf494cb8d6a69c94
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2019 Frontera Consulting, LLC
1
+ Copyright 2020 Frontera Consulting, LLC
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the "Software"),
@@ -351,7 +351,7 @@ module ZuoraRestClient
351
351
  end
352
352
 
353
353
  def get_product(product_id, zuora_version = nil)
354
- @connection.rest_get("/catalog/products/#{product_id}", zuora_version)
354
+ @connection.rest_get("/catalog/product/#{product_id}", zuora_version)
355
355
  end
356
356
 
357
357
  def share_product_with_entities(product_id, request, zuora_version = nil)
@@ -182,7 +182,6 @@ module ZuoraRestClient
182
182
  Faraday.new(url: rest_endpoint_uri.to_s, request: {
183
183
  open_timeout: @options[:request_open_timeout] || 120,
184
184
  timeout: @options[:request_timeout] || 120 }) do |faraday|
185
- faraday.use FaradayMiddleware::FollowRedirects
186
185
  faraday.request :multipart
187
186
  faraday.response :detailed_logger, logger
188
187
  faraday.adapter :httpclient
@@ -1,3 +1,3 @@
1
1
  module ZuoraRestClient
2
- VERSION = '1.2.1'
2
+ VERSION = '1.2.1.5'
3
3
  end
metadata CHANGED
@@ -1,43 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zuora_rest_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.2.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Massad
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-05-28 00:00:00.000000000 Z
11
+ date: 2020-07-27 00:00:00.000000000 Z
12
12
  dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: bundler
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '1.13'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '1.13'
27
13
  - !ruby/object:Gem::Dependency
28
14
  name: rake
29
15
  requirement: !ruby/object:Gem::Requirement
30
16
  requirements:
31
17
  - - "~>"
32
18
  - !ruby/object:Gem::Version
33
- version: '10.0'
19
+ version: '13'
34
20
  type: :development
35
21
  prerelease: false
36
22
  version_requirements: !ruby/object:Gem::Requirement
37
23
  requirements:
38
24
  - - "~>"
39
25
  - !ruby/object:Gem::Version
40
- version: '10.0'
26
+ version: '13'
41
27
  - !ruby/object:Gem::Dependency
42
28
  name: rspec
43
29
  requirement: !ruby/object:Gem::Requirement
@@ -126,56 +112,68 @@ dependencies:
126
112
  requirements:
127
113
  - - "~>"
128
114
  - !ruby/object:Gem::Version
129
- version: '2.8'
115
+ version: '2'
130
116
  type: :runtime
131
117
  prerelease: false
132
118
  version_requirements: !ruby/object:Gem::Requirement
133
119
  requirements:
134
120
  - - "~>"
135
121
  - !ruby/object:Gem::Version
136
- version: '2.8'
122
+ version: '2'
137
123
  - !ruby/object:Gem::Dependency
138
124
  name: faraday
139
125
  requirement: !ruby/object:Gem::Requirement
140
126
  requirements:
141
- - - "~>"
127
+ - - ">="
142
128
  - !ruby/object:Gem::Version
143
129
  version: '0'
130
+ - - "<"
131
+ - !ruby/object:Gem::Version
132
+ version: '2'
144
133
  type: :runtime
145
134
  prerelease: false
146
135
  version_requirements: !ruby/object:Gem::Requirement
147
136
  requirements:
148
- - - "~>"
137
+ - - ">="
149
138
  - !ruby/object:Gem::Version
150
139
  version: '0'
140
+ - - "<"
141
+ - !ruby/object:Gem::Version
142
+ version: '2'
151
143
  - !ruby/object:Gem::Dependency
152
- name: faraday-detailed_logger
144
+ name: faraday_middleware
153
145
  requirement: !ruby/object:Gem::Requirement
154
146
  requirements:
155
- - - "~>"
147
+ - - ">="
148
+ - !ruby/object:Gem::Version
149
+ version: '0'
150
+ - - "<"
156
151
  - !ruby/object:Gem::Version
157
152
  version: '2'
158
153
  type: :runtime
159
154
  prerelease: false
160
155
  version_requirements: !ruby/object:Gem::Requirement
161
156
  requirements:
162
- - - "~>"
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ - - "<"
163
161
  - !ruby/object:Gem::Version
164
162
  version: '2'
165
163
  - !ruby/object:Gem::Dependency
166
- name: faraday_middleware
164
+ name: faraday-detailed_logger
167
165
  requirement: !ruby/object:Gem::Requirement
168
166
  requirements:
169
167
  - - "~>"
170
168
  - !ruby/object:Gem::Version
171
- version: '0'
169
+ version: '2'
172
170
  type: :runtime
173
171
  prerelease: false
174
172
  version_requirements: !ruby/object:Gem::Requirement
175
173
  requirements:
176
174
  - - "~>"
177
175
  - !ruby/object:Gem::Version
178
- version: '0'
176
+ version: '2'
179
177
  - !ruby/object:Gem::Dependency
180
178
  name: multipart-post
181
179
  requirement: !ruby/object:Gem::Requirement
@@ -276,9 +274,6 @@ dependencies:
276
274
  name: recursive-open-struct
277
275
  requirement: !ruby/object:Gem::Requirement
278
276
  requirements:
279
- - - "~>"
280
- - !ruby/object:Gem::Version
281
- version: '1'
282
277
  - - ">="
283
278
  - !ruby/object:Gem::Version
284
279
  version: 1.0.4
@@ -286,9 +281,6 @@ dependencies:
286
281
  prerelease: false
287
282
  version_requirements: !ruby/object:Gem::Requirement
288
283
  requirements:
289
- - - "~>"
290
- - !ruby/object:Gem::Version
291
- version: '1'
292
284
  - - ">="
293
285
  - !ruby/object:Gem::Version
294
286
  version: 1.0.4
@@ -313,37 +305,15 @@ executables: []
313
305
  extensions: []
314
306
  extra_rdoc_files: []
315
307
  files:
316
- - ".gitignore"
317
- - ".rspec"
318
- - ".travis.yml"
319
- - Gemfile
320
308
  - LICENSE
321
309
  - README.md
322
- - Rakefile
323
310
  - bin/console
324
311
  - bin/setup
325
- - fixtures/vcr_cassettes/zuora/create_account_object_success.yml
326
- - fixtures/vcr_cassettes/zuora/create_account_success.yml
327
- - fixtures/vcr_cassettes/zuora/delete_account_object_success.yml
328
- - fixtures/vcr_cassettes/zuora/describe_account.yml
329
- - fixtures/vcr_cassettes/zuora/describe_account_related_objects.yml
330
- - fixtures/vcr_cassettes/zuora/describe_all_account_fields.yml
331
- - fixtures/vcr_cassettes/zuora/describe_all_zobjects.yml
332
- - fixtures/vcr_cassettes/zuora/describe_exportable_account_fields.yml
333
- - fixtures/vcr_cassettes/zuora/describe_non_exportable_account_fields.yml
334
- - fixtures/vcr_cassettes/zuora/describe_non_updateable_account_fields.yml
335
- - fixtures/vcr_cassettes/zuora/describe_updateable_account_fields.yml
336
- - fixtures/vcr_cassettes/zuora/get_account_object_success.yml
337
- - fixtures/vcr_cassettes/zuora/get_account_success.yml
338
- - fixtures/vcr_cassettes/zuora/get_account_summary_success.yml
339
- - fixtures/vcr_cassettes/zuora/update_account_object_success.yml
340
- - fixtures/vcr_cassettes/zuora/update_account_success.yml
341
312
  - lib/zuora_rest_client.rb
342
313
  - lib/zuora_rest_client/client.rb
343
314
  - lib/zuora_rest_client/connection.rb
344
315
  - lib/zuora_rest_client/result.rb
345
316
  - lib/zuora_rest_client/version.rb
346
- - zuora_rest_client.gemspec
347
317
  homepage: https://github.com/FronteraConsulting/zuora_rest_client
348
318
  licenses:
349
319
  - MIT
@@ -363,8 +333,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
363
333
  - !ruby/object:Gem::Version
364
334
  version: '0'
365
335
  requirements: []
366
- rubyforge_project:
367
- rubygems_version: 2.7.8
336
+ rubygems_version: 3.1.4
368
337
  signing_key:
369
338
  specification_version: 4
370
339
  summary: Zuora REST Client
data/.gitignore DELETED
@@ -1,54 +0,0 @@
1
- *.gem
2
- *.rbc
3
- /.config
4
- /coverage/
5
- /InstalledFiles
6
- /pkg/
7
- /spec/reports/
8
- /spec/examples.txt
9
- /test/tmp/
10
- /test/version_tmp/
11
- /tmp/
12
-
13
- # Used by dotenv library to load environment variables.
14
- .env
15
-
16
- ## Specific to RubyMotion:
17
- .dat*
18
- .repl_history
19
- build/
20
- *.bridgesupport
21
- build-iPhoneOS/
22
- build-iPhoneSimulator/
23
-
24
- ## Specific to RubyMotion (use of CocoaPods):
25
- #
26
- # We recommend against adding the Pods directory to your .gitignore. However
27
- # you should judge for yourself, the pros and cons are mentioned at:
28
- # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
29
- #
30
- # vendor/Pods/
31
-
32
- ## Documentation cache and generated files:
33
- /.yardoc/
34
- /_yardoc/
35
- /doc/
36
- /rdoc/
37
-
38
- ## Environment normalization:
39
- /.bundle/
40
- /vendor/bundle
41
- /lib/bundler/man/
42
-
43
- # for a library or gem, you might want to ignore these files since the code is
44
- # intended to run in multiple environments; otherwise, check them in:
45
- Gemfile.lock
46
- .ruby-version
47
- .ruby-gemset
48
-
49
- # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
50
- .rvmrc
51
-
52
- .idea
53
- /.env
54
- .env
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --format documentation
2
- --color
@@ -1,5 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- rvm:
4
- - 2.3.3
5
- before_install: gem install bundler -v 1.13.6
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- # Specify your gem's dependencies in zuora_rest_client.gemspec
4
- gemspec
data/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task :default => :spec
@@ -1,51 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: https://rest.zuora.com/v1/object/account
6
- body:
7
- encoding: UTF-8
8
- string: '{"Batch":"Batch1","BillCycleDay":15,"Currency":"USD","Name":"Test Account","PaymentTerm":"Due
9
- Upon Receipt","Status":"Draft"}'
10
- headers:
11
- Content-Type:
12
- - application/json
13
- apiAccessKeyId:
14
- - "{ZUORA_USERNAME}"
15
- apiSecretAccessKey:
16
- - "{ZUORA_PASSWORD}"
17
- response:
18
- status:
19
- code: 200
20
- message: OK
21
- headers:
22
- Content-Type:
23
- - application/json; charset=utf-8
24
- Server:
25
- - kong/0.9.9
26
- zuora-request-id:
27
- - c433898d-bba1-4384-9fc8-3229ae85a434
28
- X-Kong-Upstream-Latency:
29
- - '783'
30
- X-Kong-Proxy-Latency:
31
- - '0'
32
- Expires:
33
- - Thu, 21 Feb 2019 16:39:14 GMT
34
- Cache-Control:
35
- - max-age=0, no-cache, no-store
36
- Pragma:
37
- - no-cache
38
- Date:
39
- - Thu, 21 Feb 2019 16:39:14 GMT
40
- Content-Length:
41
- - '57'
42
- Connection:
43
- - keep-alive
44
- body:
45
- encoding: UTF-8
46
- string: '{"Success":true,"Id":"2c92a0fc690db104016910ece4fc24fe"}
47
-
48
- '
49
- http_version:
50
- recorded_at: Thu, 21 Feb 2019 16:39:14 GMT
51
- recorded_with: VCR 4.0.0
@@ -1,66 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: https://rest.zuora.com/v1/accounts
6
- body:
7
- encoding: UTF-8
8
- string: '{"batch":"Batch1","billCycleDay":15,"billToContact":{"country":"US","firstName":"Test","lastName":"User","state":"TX"},"creditCard":{"cardHolderInfo":{"addressLine1":"123
9
- Anystreet Lane","cardHolderName":"Test User","city":"Anytown","country":"US","state":"TX","zipCode":"00000"},"cardNumber":"4111111111111111","cardType":"Visa","expirationMonth":"12","expirationYear":"2099","securityCode":"123"},"currency":"USD","name":"Test
10
- Account","paymentTerm":"Due Upon Receipt"}'
11
- headers:
12
- Content-Type:
13
- - application/json
14
- apiAccessKeyId:
15
- - "{ZUORA_USERNAME}"
16
- apiSecretAccessKey:
17
- - "{ZUORA_PASSWORD}"
18
- response:
19
- status:
20
- code: 200
21
- message: OK
22
- headers:
23
- Content-Type:
24
- - application/json;charset=utf-8
25
- Content-Security-Policy-Report-Only:
26
- - media-src 'none'; img-src 'self' *.zuora.com; object-src *.zuora.com; script-src
27
- 'unsafe-inline' 'unsafe-eval' 'self' https://api.tcell.io/; manifest-src 'none';
28
- style-src 'unsafe-inline' 'self'; font-src 'self'; child-src 'none'; frame-src
29
- 'none'; connect-src 'self' https://api.tcell.io/ https://input.tcell.io/;
30
- report-uri https://input.tcell.io/csp/8abeff14fea5928cf9f25296fca62aa1a75fa57a6f06ad15ea451d64a579f75c?rid=-451839198
31
- Server:
32
- - Zuora App
33
- zuora-request-id:
34
- - 89edc3be-03ed-4fd5-afe7-baf9b43d0bd9
35
- X-Kong-Upstream-Latency:
36
- - '265'
37
- X-Kong-Proxy-Latency:
38
- - '0'
39
- Expires:
40
- - Thu, 21 Feb 2019 16:39:12 GMT
41
- Cache-Control:
42
- - max-age=0, no-cache, no-store
43
- Pragma:
44
- - no-cache
45
- Date:
46
- - Thu, 21 Feb 2019 16:39:12 GMT
47
- Content-Length:
48
- - '281'
49
- Connection:
50
- - keep-alive
51
- Set-Cookie:
52
- - ZSession={ZUORA_SESSION_ID}; Path=/; Secure; HttpOnly
53
- body:
54
- encoding: UTF-8
55
- string: |-
56
- {
57
- "success" : true,
58
- "accountId" : "2c92a008690a61a0016910ecddc619d3",
59
- "accountNumber" : "Z00324163",
60
- "billToContactId" : "2c92a008690a61a0016910ecdde419d4",
61
- "soldToContactId" : "2c92a008690a61a0016910ecddef19d6",
62
- "paymentMethodId" : "2c92a008690a61a0016910ecde1719d9"
63
- }
64
- http_version:
65
- recorded_at: Thu, 21 Feb 2019 16:39:12 GMT
66
- recorded_with: VCR 4.0.0
@@ -1,191 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: delete
5
- uri: https://rest.zuora.com/v1/object/account/2c92a008690a61a0016910ecddc619d3
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- Content-Type:
11
- - application/json
12
- apiAccessKeyId:
13
- - "{ZUORA_USERNAME}"
14
- apiSecretAccessKey:
15
- - "{ZUORA_PASSWORD}"
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Content-Type:
22
- - application/json; charset=utf-8
23
- Server:
24
- - kong/0.9.9
25
- zuora-request-id:
26
- - 85b15100-d816-46c4-90a9-8681fb25d1e4
27
- X-Kong-Upstream-Latency:
28
- - '142'
29
- X-Kong-Proxy-Latency:
30
- - '0'
31
- Expires:
32
- - Thu, 21 Feb 2019 16:39:15 GMT
33
- Cache-Control:
34
- - max-age=0, no-cache, no-store
35
- Pragma:
36
- - no-cache
37
- Date:
38
- - Thu, 21 Feb 2019 16:39:15 GMT
39
- Content-Length:
40
- - '57'
41
- Connection:
42
- - keep-alive
43
- body:
44
- encoding: UTF-8
45
- string: '{"id":"2c92a008690a61a0016910ecddc619d3","success":true}
46
-
47
- '
48
- http_version:
49
- recorded_at: Thu, 21 Feb 2019 16:39:15 GMT
50
- - request:
51
- method: get
52
- uri: https://rest.zuora.com/v1/object/account/2c92a008690a61a0016910ecddc619d3
53
- body:
54
- encoding: US-ASCII
55
- string: ''
56
- headers:
57
- Content-Type:
58
- - application/json
59
- apiAccessKeyId:
60
- - "{ZUORA_USERNAME}"
61
- apiSecretAccessKey:
62
- - "{ZUORA_PASSWORD}"
63
- response:
64
- status:
65
- code: 404
66
- message: Not Found
67
- headers:
68
- Content-Type:
69
- - application/json; charset=utf-8
70
- Server:
71
- - kong/0.9.9
72
- zuora-request-id:
73
- - 4a1f7e9f-fd0e-4187-9512-19258b4eca85
74
- X-Kong-Upstream-Latency:
75
- - '42'
76
- X-Kong-Proxy-Latency:
77
- - '0'
78
- Expires:
79
- - Thu, 21 Feb 2019 16:39:20 GMT
80
- Cache-Control:
81
- - max-age=0, no-cache, no-store
82
- Pragma:
83
- - no-cache
84
- Date:
85
- - Thu, 21 Feb 2019 16:39:20 GMT
86
- Content-Length:
87
- - '36'
88
- Connection:
89
- - keep-alive
90
- body:
91
- encoding: UTF-8
92
- string: '{"records":[],"size":0,"done":true}
93
-
94
- '
95
- http_version:
96
- recorded_at: Thu, 21 Feb 2019 16:39:20 GMT
97
- - request:
98
- method: delete
99
- uri: https://rest.zuora.com/v1/object/account/2c92a0fc690db104016910ece4fc24fe
100
- body:
101
- encoding: US-ASCII
102
- string: ''
103
- headers:
104
- Content-Type:
105
- - application/json
106
- apiAccessKeyId:
107
- - "{ZUORA_USERNAME}"
108
- apiSecretAccessKey:
109
- - "{ZUORA_PASSWORD}"
110
- response:
111
- status:
112
- code: 200
113
- message: OK
114
- headers:
115
- Content-Type:
116
- - application/json; charset=utf-8
117
- Server:
118
- - kong/0.9.9
119
- zuora-request-id:
120
- - ebef425e-a233-4302-8a52-2efbf3e03072
121
- X-Kong-Upstream-Latency:
122
- - '121'
123
- X-Kong-Proxy-Latency:
124
- - '0'
125
- Expires:
126
- - Thu, 21 Feb 2019 16:39:20 GMT
127
- Cache-Control:
128
- - max-age=0, no-cache, no-store
129
- Pragma:
130
- - no-cache
131
- Date:
132
- - Thu, 21 Feb 2019 16:39:20 GMT
133
- Content-Length:
134
- - '57'
135
- Connection:
136
- - keep-alive
137
- body:
138
- encoding: UTF-8
139
- string: '{"id":"2c92a0fc690db104016910ece4fc24fe","success":true}
140
-
141
- '
142
- http_version:
143
- recorded_at: Thu, 21 Feb 2019 16:39:20 GMT
144
- - request:
145
- method: get
146
- uri: https://rest.zuora.com/v1/object/account/2c92a0fc690db104016910ece4fc24fe
147
- body:
148
- encoding: US-ASCII
149
- string: ''
150
- headers:
151
- Content-Type:
152
- - application/json
153
- apiAccessKeyId:
154
- - "{ZUORA_USERNAME}"
155
- apiSecretAccessKey:
156
- - "{ZUORA_PASSWORD}"
157
- response:
158
- status:
159
- code: 404
160
- message: Not Found
161
- headers:
162
- Content-Type:
163
- - application/json; charset=utf-8
164
- Server:
165
- - kong/0.9.9
166
- zuora-request-id:
167
- - 5453df72-ba55-47d5-9bd2-8888be7206fd
168
- X-Kong-Upstream-Latency:
169
- - '46'
170
- X-Kong-Proxy-Latency:
171
- - '0'
172
- Expires:
173
- - Thu, 21 Feb 2019 16:39:25 GMT
174
- Cache-Control:
175
- - max-age=0, no-cache, no-store
176
- Pragma:
177
- - no-cache
178
- Date:
179
- - Thu, 21 Feb 2019 16:39:25 GMT
180
- Content-Length:
181
- - '36'
182
- Connection:
183
- - keep-alive
184
- body:
185
- encoding: UTF-8
186
- string: '{"records":[],"size":0,"done":true}
187
-
188
- '
189
- http_version:
190
- recorded_at: Thu, 21 Feb 2019 16:39:25 GMT
191
- recorded_with: VCR 4.0.0