ultracart_api 4.1.12 → 4.1.14

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.
@@ -1,385 +1,290 @@
1
- # UltracartClient::IntegrationLogApi
2
-
3
- All URIs are relative to *https://secure.ultracart.com/rest/v2*
4
-
5
- | Method | HTTP request | Description |
6
- | ------ | ------------ | ----------- |
7
- | [**get_integration_log**](IntegrationLogApi.md#get_integration_log) | **GET** /integration_log/query/{pk}/{sk} | Retrieve an integration log |
8
- | [**get_integration_log_file**](IntegrationLogApi.md#get_integration_log_file) | **GET** /integration_log/query/{pk}/{sk}/{uuid} | Retrieve an integration log file |
9
- | [**get_integration_log_file_pdf**](IntegrationLogApi.md#get_integration_log_file_pdf) | **GET** /integration_log/query/{pk}/{sk}/{uuid}/pdf | Retrieve an integration log file converted to PDF |
10
- | [**get_integration_log_summaries_query**](IntegrationLogApi.md#get_integration_log_summaries_query) | **POST** /integration_log/summary/query | Retrieve integration log summaries |
11
- | [**get_integration_logs_query**](IntegrationLogApi.md#get_integration_logs_query) | **POST** /integration_log/query | Retrieve integration logs |
12
-
13
-
14
- ## get_integration_log
15
-
16
- > <IntegrationLogResponse> get_integration_log(pk, sk)
17
-
18
- Retrieve an integration log
19
-
20
- Retrieve an integration logs from the account based identifiers
21
-
22
- ### Examples
23
-
24
- ```ruby
25
- require 'time'
26
- require 'ultracart_api'
27
- require 'json'
28
- require 'yaml'
29
- require_relative '../constants' # https://github.com/UltraCart/sdk_samples/blob/master/ruby/constants.rb
30
-
31
- # This example is based on our samples_sdk project, but still contains auto-generated content from our sdk generators.
32
- # As such, this might not be the best way to use this object.
33
- # Please see https://github.com/UltraCart/sdk_samples for working examples.
34
-
35
- api = UltracartClient::IntegrationLogApi.new_using_api_key(Constants::API_KEY, Constants::VERIFY_SSL, Constants::DEBUG_MODE)
36
- pk = 'pk_example' # String |
37
- sk = 'sk_example' # String |
38
-
39
- begin
40
- # Retrieve an integration log
41
- result = api_instance.get_integration_log(pk, sk)
42
- p result
43
- rescue UltracartClient::ApiError => e
44
- puts "Error when calling IntegrationLogApi->get_integration_log: #{e}"
45
- end
46
- ```
47
-
48
- #### Using the get_integration_log_with_http_info variant
49
-
50
- This returns an Array which contains the response data, status code and headers.
51
-
52
- > <Array(<IntegrationLogResponse>, Integer, Hash)> get_integration_log_with_http_info(pk, sk)
53
-
54
- ```ruby
55
- begin
56
- # Retrieve an integration log
57
- data, status_code, headers = api_instance.get_integration_log_with_http_info(pk, sk)
58
- p status_code # => 2xx
59
- p headers # => { ... }
60
- p data # => <IntegrationLogResponse>
61
- rescue UltracartClient::ApiError => e
62
- puts "Error when calling IntegrationLogApi->get_integration_log_with_http_info: #{e}"
63
- end
64
- ```
65
-
66
- ### Parameters
67
-
68
- | Name | Type | Description | Notes |
69
- | ---- | ---- | ----------- | ----- |
70
- | **pk** | **String** | | |
71
- | **sk** | **String** | | |
72
-
73
- ### Return type
74
-
75
- [**IntegrationLogResponse**](IntegrationLogResponse.md)
76
-
77
- ### Authorization
78
-
79
- [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
80
-
81
- ### HTTP request headers
82
-
83
- - **Content-Type**: Not defined
84
- - **Accept**: application/json
85
-
86
-
87
- ## get_integration_log_file
88
-
89
- > File get_integration_log_file(pk, sk, uuid)
90
-
91
- Retrieve an integration log file
92
-
93
- Retrieve an integration log file from the account based identifiers
94
-
95
- ### Examples
96
-
97
- ```ruby
98
- require 'time'
99
- require 'ultracart_api'
100
- require 'json'
101
- require 'yaml'
102
- require_relative '../constants' # https://github.com/UltraCart/sdk_samples/blob/master/ruby/constants.rb
103
-
104
- # This example is based on our samples_sdk project, but still contains auto-generated content from our sdk generators.
105
- # As such, this might not be the best way to use this object.
106
- # Please see https://github.com/UltraCart/sdk_samples for working examples.
107
-
108
- api = UltracartClient::IntegrationLogApi.new_using_api_key(Constants::API_KEY, Constants::VERIFY_SSL, Constants::DEBUG_MODE)
109
- pk = 'pk_example' # String |
110
- sk = 'sk_example' # String |
111
- uuid = 'uuid_example' # String |
112
-
113
- begin
114
- # Retrieve an integration log file
115
- result = api_instance.get_integration_log_file(pk, sk, uuid)
116
- p result
117
- rescue UltracartClient::ApiError => e
118
- puts "Error when calling IntegrationLogApi->get_integration_log_file: #{e}"
119
- end
120
- ```
121
-
122
- #### Using the get_integration_log_file_with_http_info variant
123
-
124
- This returns an Array which contains the response data, status code and headers.
125
-
126
- > <Array(File, Integer, Hash)> get_integration_log_file_with_http_info(pk, sk, uuid)
127
-
128
- ```ruby
129
- begin
130
- # Retrieve an integration log file
131
- data, status_code, headers = api_instance.get_integration_log_file_with_http_info(pk, sk, uuid)
132
- p status_code # => 2xx
133
- p headers # => { ... }
134
- p data # => File
135
- rescue UltracartClient::ApiError => e
136
- puts "Error when calling IntegrationLogApi->get_integration_log_file_with_http_info: #{e}"
137
- end
138
- ```
139
-
140
- ### Parameters
141
-
142
- | Name | Type | Description | Notes |
143
- | ---- | ---- | ----------- | ----- |
144
- | **pk** | **String** | | |
145
- | **sk** | **String** | | |
146
- | **uuid** | **String** | | |
147
-
148
- ### Return type
149
-
150
- **File**
151
-
152
- ### Authorization
153
-
154
- [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
155
-
156
- ### HTTP request headers
157
-
158
- - **Content-Type**: Not defined
159
- - **Accept**: application/octet-stream
160
-
161
-
162
- ## get_integration_log_file_pdf
163
-
164
- > File get_integration_log_file_pdf(pk, sk, uuid)
165
-
166
- Retrieve an integration log file converted to PDF
167
-
168
- Retrieve an integration log file from the account based identifiers
169
-
170
- ### Examples
171
-
172
- ```ruby
173
- require 'time'
174
- require 'ultracart_api'
175
- require 'json'
176
- require 'yaml'
177
- require_relative '../constants' # https://github.com/UltraCart/sdk_samples/blob/master/ruby/constants.rb
178
-
179
- # This example is based on our samples_sdk project, but still contains auto-generated content from our sdk generators.
180
- # As such, this might not be the best way to use this object.
181
- # Please see https://github.com/UltraCart/sdk_samples for working examples.
182
-
183
- api = UltracartClient::IntegrationLogApi.new_using_api_key(Constants::API_KEY, Constants::VERIFY_SSL, Constants::DEBUG_MODE)
184
- pk = 'pk_example' # String |
185
- sk = 'sk_example' # String |
186
- uuid = 'uuid_example' # String |
187
-
188
- begin
189
- # Retrieve an integration log file converted to PDF
190
- result = api_instance.get_integration_log_file_pdf(pk, sk, uuid)
191
- p result
192
- rescue UltracartClient::ApiError => e
193
- puts "Error when calling IntegrationLogApi->get_integration_log_file_pdf: #{e}"
194
- end
195
- ```
196
-
197
- #### Using the get_integration_log_file_pdf_with_http_info variant
198
-
199
- This returns an Array which contains the response data, status code and headers.
200
-
201
- > <Array(File, Integer, Hash)> get_integration_log_file_pdf_with_http_info(pk, sk, uuid)
202
-
203
- ```ruby
204
- begin
205
- # Retrieve an integration log file converted to PDF
206
- data, status_code, headers = api_instance.get_integration_log_file_pdf_with_http_info(pk, sk, uuid)
207
- p status_code # => 2xx
208
- p headers # => { ... }
209
- p data # => File
210
- rescue UltracartClient::ApiError => e
211
- puts "Error when calling IntegrationLogApi->get_integration_log_file_pdf_with_http_info: #{e}"
212
- end
213
- ```
214
-
215
- ### Parameters
216
-
217
- | Name | Type | Description | Notes |
218
- | ---- | ---- | ----------- | ----- |
219
- | **pk** | **String** | | |
220
- | **sk** | **String** | | |
221
- | **uuid** | **String** | | |
222
-
223
- ### Return type
224
-
225
- **File**
226
-
227
- ### Authorization
228
-
229
- [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
230
-
231
- ### HTTP request headers
232
-
233
- - **Content-Type**: Not defined
234
- - **Accept**: application/octet-stream
235
-
236
-
237
- ## get_integration_log_summaries_query
238
-
239
- > <IntegrationLogSummaryQueryResponse> get_integration_log_summaries_query(integration_log_summaries_query)
240
-
241
- Retrieve integration log summaries
242
-
243
- Retrieves a set of integration log summaries from the account based on a query object.
244
-
245
- ### Examples
246
-
247
- ```ruby
248
- require 'time'
249
- require 'ultracart_api'
250
- require 'json'
251
- require 'yaml'
252
- require_relative '../constants' # https://github.com/UltraCart/sdk_samples/blob/master/ruby/constants.rb
253
-
254
- # This example is based on our samples_sdk project, but still contains auto-generated content from our sdk generators.
255
- # As such, this might not be the best way to use this object.
256
- # Please see https://github.com/UltraCart/sdk_samples for working examples.
257
-
258
- api = UltracartClient::IntegrationLogApi.new_using_api_key(Constants::API_KEY, Constants::VERIFY_SSL, Constants::DEBUG_MODE)
259
- integration_log_summaries_query = UltracartClient::IntegrationLogSummaryQueryRequest.new # IntegrationLogSummaryQueryRequest | Integration log summaries query
260
-
261
- begin
262
- # Retrieve integration log summaries
263
- result = api_instance.get_integration_log_summaries_query(integration_log_summaries_query)
264
- p result
265
- rescue UltracartClient::ApiError => e
266
- puts "Error when calling IntegrationLogApi->get_integration_log_summaries_query: #{e}"
267
- end
268
- ```
269
-
270
- #### Using the get_integration_log_summaries_query_with_http_info variant
271
-
272
- This returns an Array which contains the response data, status code and headers.
273
-
274
- > <Array(<IntegrationLogSummaryQueryResponse>, Integer, Hash)> get_integration_log_summaries_query_with_http_info(integration_log_summaries_query)
275
-
276
- ```ruby
277
- begin
278
- # Retrieve integration log summaries
279
- data, status_code, headers = api_instance.get_integration_log_summaries_query_with_http_info(integration_log_summaries_query)
280
- p status_code # => 2xx
281
- p headers # => { ... }
282
- p data # => <IntegrationLogSummaryQueryResponse>
283
- rescue UltracartClient::ApiError => e
284
- puts "Error when calling IntegrationLogApi->get_integration_log_summaries_query_with_http_info: #{e}"
285
- end
286
- ```
287
-
288
- ### Parameters
289
-
290
- | Name | Type | Description | Notes |
291
- | ---- | ---- | ----------- | ----- |
292
- | **integration_log_summaries_query** | [**IntegrationLogSummaryQueryRequest**](IntegrationLogSummaryQueryRequest.md) | Integration log summaries query | |
293
-
294
- ### Return type
295
-
296
- [**IntegrationLogSummaryQueryResponse**](IntegrationLogSummaryQueryResponse.md)
297
-
298
- ### Authorization
299
-
300
- [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
301
-
302
- ### HTTP request headers
303
-
304
- - **Content-Type**: application/json
305
- - **Accept**: application/json
306
-
307
-
308
- ## get_integration_logs_query
309
-
310
- > <IntegrationLogQueryResponse> get_integration_logs_query(integration_log_query, opts)
311
-
312
- Retrieve integration logs
313
-
314
- Retrieves a set of integration logs from the account based on a query object.
315
-
316
- ### Examples
317
-
318
- ```ruby
319
- require 'time'
320
- require 'ultracart_api'
321
- require 'json'
322
- require 'yaml'
323
- require_relative '../constants' # https://github.com/UltraCart/sdk_samples/blob/master/ruby/constants.rb
324
-
325
- # This example is based on our samples_sdk project, but still contains auto-generated content from our sdk generators.
326
- # As such, this might not be the best way to use this object.
327
- # Please see https://github.com/UltraCart/sdk_samples for working examples.
328
-
329
- api = UltracartClient::IntegrationLogApi.new_using_api_key(Constants::API_KEY, Constants::VERIFY_SSL, Constants::DEBUG_MODE)
330
- integration_log_query = UltracartClient::IntegrationLogQueryRequest.new # IntegrationLogQueryRequest | Integration log query
331
- opts = {
332
- _limit: 56, # Integer | The maximum number of records to return on this one API call. (Default 100, Max 500)
333
- _offset: 56, # Integer | Pagination of the record set. Offset is a zero based index.
334
- _sort: '_sort_example' # String | The sort order of the items. See Sorting documentation for examples of using multiple values and sorting by ascending and descending.
335
- }
336
-
337
- begin
338
- # Retrieve integration logs
339
- result = api_instance.get_integration_logs_query(integration_log_query, opts)
340
- p result
341
- rescue UltracartClient::ApiError => e
342
- puts "Error when calling IntegrationLogApi->get_integration_logs_query: #{e}"
343
- end
344
- ```
345
-
346
- #### Using the get_integration_logs_query_with_http_info variant
347
-
348
- This returns an Array which contains the response data, status code and headers.
349
-
350
- > <Array(<IntegrationLogQueryResponse>, Integer, Hash)> get_integration_logs_query_with_http_info(integration_log_query, opts)
351
-
352
- ```ruby
353
- begin
354
- # Retrieve integration logs
355
- data, status_code, headers = api_instance.get_integration_logs_query_with_http_info(integration_log_query, opts)
356
- p status_code # => 2xx
357
- p headers # => { ... }
358
- p data # => <IntegrationLogQueryResponse>
359
- rescue UltracartClient::ApiError => e
360
- puts "Error when calling IntegrationLogApi->get_integration_logs_query_with_http_info: #{e}"
361
- end
362
- ```
363
-
364
- ### Parameters
365
-
366
- | Name | Type | Description | Notes |
367
- | ---- | ---- | ----------- | ----- |
368
- | **integration_log_query** | [**IntegrationLogQueryRequest**](IntegrationLogQueryRequest.md) | Integration log query | |
369
- | **_limit** | **Integer** | The maximum number of records to return on this one API call. (Default 100, Max 500) | [optional][default to 100] |
370
- | **_offset** | **Integer** | Pagination of the record set. Offset is a zero based index. | [optional][default to 0] |
371
- | **_sort** | **String** | The sort order of the items. See Sorting documentation for examples of using multiple values and sorting by ascending and descending. | [optional] |
372
-
373
- ### Return type
374
-
375
- [**IntegrationLogQueryResponse**](IntegrationLogQueryResponse.md)
376
-
377
- ### Authorization
378
-
379
- [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
380
-
381
- ### HTTP request headers
382
-
383
- - **Content-Type**: application/json
384
- - **Accept**: application/json
385
-
1
+ # UltracartClient::IntegrationLogApi
2
+
3
+ All URIs are relative to *https://secure.ultracart.com/rest/v2*
4
+
5
+ | Method | HTTP request | Description |
6
+ | ------ | ------------ | ----------- |
7
+ | [**get_integration_log**](IntegrationLogApi.md#get_integration_log) | **GET** /integration_log/query/{pk}/{sk} | Retrieve an integration log |
8
+ | [**get_integration_log_file**](IntegrationLogApi.md#get_integration_log_file) | **GET** /integration_log/query/{pk}/{sk}/{uuid} | Retrieve an integration log file |
9
+ | [**get_integration_log_file_pdf**](IntegrationLogApi.md#get_integration_log_file_pdf) | **GET** /integration_log/query/{pk}/{sk}/{uuid}/pdf | Retrieve an integration log file converted to PDF |
10
+ | [**get_integration_log_summaries_query**](IntegrationLogApi.md#get_integration_log_summaries_query) | **POST** /integration_log/summary/query | Retrieve integration log summaries |
11
+ | [**get_integration_logs_query**](IntegrationLogApi.md#get_integration_logs_query) | **POST** /integration_log/query | Retrieve integration logs |
12
+
13
+
14
+ ## get_integration_log
15
+
16
+ > <IntegrationLogResponse> get_integration_log(pk, sk)
17
+
18
+ Retrieve an integration log
19
+
20
+ Retrieve an integration logs from the account based identifiers
21
+
22
+
23
+ ### Examples
24
+
25
+ ```ruby
26
+ # Internal API. No samples are provided as merchants will never need this api method
27
+ ```
28
+
29
+
30
+ #### Using the get_integration_log_with_http_info variant
31
+
32
+ This returns an Array which contains the response data, status code and headers.
33
+
34
+ > <Array(<IntegrationLogResponse>, Integer, Hash)> get_integration_log_with_http_info(pk, sk)
35
+
36
+ ```ruby
37
+ begin
38
+ # Retrieve an integration log
39
+ data, status_code, headers = api_instance.get_integration_log_with_http_info(pk, sk)
40
+ p status_code # => 2xx
41
+ p headers # => { ... }
42
+ p data # => <IntegrationLogResponse>
43
+ rescue UltracartClient::ApiError => e
44
+ puts "Error when calling IntegrationLogApi->get_integration_log_with_http_info: #{e}"
45
+ end
46
+ ```
47
+
48
+ ### Parameters
49
+
50
+ | Name | Type | Description | Notes |
51
+ | ---- | ---- | ----------- | ----- |
52
+ | **pk** | **String** | | |
53
+ | **sk** | **String** | | |
54
+
55
+ ### Return type
56
+
57
+ [**IntegrationLogResponse**](IntegrationLogResponse.md)
58
+
59
+ ### Authorization
60
+
61
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
62
+
63
+ ### HTTP request headers
64
+
65
+ - **Content-Type**: Not defined
66
+ - **Accept**: application/json
67
+
68
+
69
+ ## get_integration_log_file
70
+
71
+ > File get_integration_log_file(pk, sk, uuid)
72
+
73
+ Retrieve an integration log file
74
+
75
+ Retrieve an integration log file from the account based identifiers
76
+
77
+
78
+ ### Examples
79
+
80
+ ```ruby
81
+ # Internal API. No samples are provided as merchants will never need this api method
82
+ ```
83
+
84
+
85
+ #### Using the get_integration_log_file_with_http_info variant
86
+
87
+ This returns an Array which contains the response data, status code and headers.
88
+
89
+ > <Array(File, Integer, Hash)> get_integration_log_file_with_http_info(pk, sk, uuid)
90
+
91
+ ```ruby
92
+ begin
93
+ # Retrieve an integration log file
94
+ data, status_code, headers = api_instance.get_integration_log_file_with_http_info(pk, sk, uuid)
95
+ p status_code # => 2xx
96
+ p headers # => { ... }
97
+ p data # => File
98
+ rescue UltracartClient::ApiError => e
99
+ puts "Error when calling IntegrationLogApi->get_integration_log_file_with_http_info: #{e}"
100
+ end
101
+ ```
102
+
103
+ ### Parameters
104
+
105
+ | Name | Type | Description | Notes |
106
+ | ---- | ---- | ----------- | ----- |
107
+ | **pk** | **String** | | |
108
+ | **sk** | **String** | | |
109
+ | **uuid** | **String** | | |
110
+
111
+ ### Return type
112
+
113
+ **File**
114
+
115
+ ### Authorization
116
+
117
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
118
+
119
+ ### HTTP request headers
120
+
121
+ - **Content-Type**: Not defined
122
+ - **Accept**: application/octet-stream
123
+
124
+
125
+ ## get_integration_log_file_pdf
126
+
127
+ > File get_integration_log_file_pdf(pk, sk, uuid)
128
+
129
+ Retrieve an integration log file converted to PDF
130
+
131
+ Retrieve an integration log file from the account based identifiers
132
+
133
+
134
+ ### Examples
135
+
136
+ ```ruby
137
+ # Internal API. No samples are provided as merchants will never need this api method
138
+ ```
139
+
140
+
141
+ #### Using the get_integration_log_file_pdf_with_http_info variant
142
+
143
+ This returns an Array which contains the response data, status code and headers.
144
+
145
+ > <Array(File, Integer, Hash)> get_integration_log_file_pdf_with_http_info(pk, sk, uuid)
146
+
147
+ ```ruby
148
+ begin
149
+ # Retrieve an integration log file converted to PDF
150
+ data, status_code, headers = api_instance.get_integration_log_file_pdf_with_http_info(pk, sk, uuid)
151
+ p status_code # => 2xx
152
+ p headers # => { ... }
153
+ p data # => File
154
+ rescue UltracartClient::ApiError => e
155
+ puts "Error when calling IntegrationLogApi->get_integration_log_file_pdf_with_http_info: #{e}"
156
+ end
157
+ ```
158
+
159
+ ### Parameters
160
+
161
+ | Name | Type | Description | Notes |
162
+ | ---- | ---- | ----------- | ----- |
163
+ | **pk** | **String** | | |
164
+ | **sk** | **String** | | |
165
+ | **uuid** | **String** | | |
166
+
167
+ ### Return type
168
+
169
+ **File**
170
+
171
+ ### Authorization
172
+
173
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
174
+
175
+ ### HTTP request headers
176
+
177
+ - **Content-Type**: Not defined
178
+ - **Accept**: application/octet-stream
179
+
180
+
181
+ ## get_integration_log_summaries_query
182
+
183
+ > <IntegrationLogSummaryQueryResponse> get_integration_log_summaries_query(integration_log_summaries_query)
184
+
185
+ Retrieve integration log summaries
186
+
187
+ Retrieves a set of integration log summaries from the account based on a query object.
188
+
189
+
190
+ ### Examples
191
+
192
+ ```ruby
193
+ # Internal API. No samples are provided as merchants will never need this api method
194
+ ```
195
+
196
+
197
+ #### Using the get_integration_log_summaries_query_with_http_info variant
198
+
199
+ This returns an Array which contains the response data, status code and headers.
200
+
201
+ > <Array(<IntegrationLogSummaryQueryResponse>, Integer, Hash)> get_integration_log_summaries_query_with_http_info(integration_log_summaries_query)
202
+
203
+ ```ruby
204
+ begin
205
+ # Retrieve integration log summaries
206
+ data, status_code, headers = api_instance.get_integration_log_summaries_query_with_http_info(integration_log_summaries_query)
207
+ p status_code # => 2xx
208
+ p headers # => { ... }
209
+ p data # => <IntegrationLogSummaryQueryResponse>
210
+ rescue UltracartClient::ApiError => e
211
+ puts "Error when calling IntegrationLogApi->get_integration_log_summaries_query_with_http_info: #{e}"
212
+ end
213
+ ```
214
+
215
+ ### Parameters
216
+
217
+ | Name | Type | Description | Notes |
218
+ | ---- | ---- | ----------- | ----- |
219
+ | **integration_log_summaries_query** | [**IntegrationLogSummaryQueryRequest**](IntegrationLogSummaryQueryRequest.md) | Integration log summaries query | |
220
+
221
+ ### Return type
222
+
223
+ [**IntegrationLogSummaryQueryResponse**](IntegrationLogSummaryQueryResponse.md)
224
+
225
+ ### Authorization
226
+
227
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
228
+
229
+ ### HTTP request headers
230
+
231
+ - **Content-Type**: application/json
232
+ - **Accept**: application/json
233
+
234
+
235
+ ## get_integration_logs_query
236
+
237
+ > <IntegrationLogQueryResponse> get_integration_logs_query(integration_log_query, opts)
238
+
239
+ Retrieve integration logs
240
+
241
+ Retrieves a set of integration logs from the account based on a query object.
242
+
243
+
244
+ ### Examples
245
+
246
+ ```ruby
247
+ # Internal API. No samples are provided as merchants will never need this api method
248
+ ```
249
+
250
+
251
+ #### Using the get_integration_logs_query_with_http_info variant
252
+
253
+ This returns an Array which contains the response data, status code and headers.
254
+
255
+ > <Array(<IntegrationLogQueryResponse>, Integer, Hash)> get_integration_logs_query_with_http_info(integration_log_query, opts)
256
+
257
+ ```ruby
258
+ begin
259
+ # Retrieve integration logs
260
+ data, status_code, headers = api_instance.get_integration_logs_query_with_http_info(integration_log_query, opts)
261
+ p status_code # => 2xx
262
+ p headers # => { ... }
263
+ p data # => <IntegrationLogQueryResponse>
264
+ rescue UltracartClient::ApiError => e
265
+ puts "Error when calling IntegrationLogApi->get_integration_logs_query_with_http_info: #{e}"
266
+ end
267
+ ```
268
+
269
+ ### Parameters
270
+
271
+ | Name | Type | Description | Notes |
272
+ | ---- | ---- | ----------- | ----- |
273
+ | **integration_log_query** | [**IntegrationLogQueryRequest**](IntegrationLogQueryRequest.md) | Integration log query | |
274
+ | **_limit** | **Integer** | The maximum number of records to return on this one API call. (Default 100, Max 500) | [optional][default to 100] |
275
+ | **_offset** | **Integer** | Pagination of the record set. Offset is a zero based index. | [optional][default to 0] |
276
+ | **_sort** | **String** | The sort order of the items. See Sorting documentation for examples of using multiple values and sorting by ascending and descending. | [optional] |
277
+
278
+ ### Return type
279
+
280
+ [**IntegrationLogQueryResponse**](IntegrationLogQueryResponse.md)
281
+
282
+ ### Authorization
283
+
284
+ [ultraCartOauth](../README.md#ultraCartOauth), [ultraCartSimpleApiKey](../README.md#ultraCartSimpleApiKey)
285
+
286
+ ### HTTP request headers
287
+
288
+ - **Content-Type**: application/json
289
+ - **Accept**: application/json
290
+