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.
- checksums.yaml +4 -4
- data/README.md +4 -2
- data/docs/AffiliateApi.md +123 -167
- data/docs/AutoOrderApi.md +1250 -903
- data/docs/ChannelPartnerApi.md +1678 -1121
- data/docs/ChargebackApi.md +297 -405
- data/docs/CheckoutApi.md +1622 -1424
- data/docs/Conversation.md +4 -0
- data/docs/ConversationApi.md +4820 -6315
- data/docs/CouponApi.md +1522 -1443
- data/docs/CustomerApi.md +2570 -1845
- data/docs/DatawarehouseApi.md +555 -723
- data/docs/FulfillmentApi.md +567 -441
- data/docs/GiftCertificateApi.md +617 -598
- data/docs/IntegrationLogApi.md +290 -385
- data/docs/ItemApi.md +2174 -1746
- data/docs/ItemRestriction.md +2 -0
- data/docs/OauthApi.md +203 -163
- data/docs/OrderApi.md +2774 -2177
- data/docs/SsoApi.md +223 -288
- data/docs/StorefrontApi.md +9692 -12967
- data/docs/TaxApi.md +1541 -2017
- data/docs/UserApi.md +606 -790
- data/docs/WebhookApi.md +787 -628
- data/docs/WorkflowApi.md +666 -879
- data/lib/ultracart_api/models/conversation.rb +21 -1
- data/lib/ultracart_api/models/item_restriction.rb +11 -1
- data/lib/ultracart_api/version.rb +1 -1
- metadata +2 -2
data/docs/IntegrationLogApi.md
CHANGED
@@ -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
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
p
|
43
|
-
rescue UltracartClient::ApiError => e
|
44
|
-
puts "Error when calling IntegrationLogApi->
|
45
|
-
end
|
46
|
-
```
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
> File
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
Retrieve an integration log file
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
```
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
#### Using the
|
198
|
-
|
199
|
-
This returns an Array which contains the response data, status code and headers.
|
200
|
-
|
201
|
-
> <Array(
|
202
|
-
|
203
|
-
```ruby
|
204
|
-
begin
|
205
|
-
# Retrieve
|
206
|
-
data, status_code, headers = api_instance.
|
207
|
-
p status_code # => 2xx
|
208
|
-
p headers # => { ... }
|
209
|
-
p data # =>
|
210
|
-
rescue UltracartClient::ApiError => e
|
211
|
-
puts "Error when calling IntegrationLogApi->
|
212
|
-
end
|
213
|
-
```
|
214
|
-
|
215
|
-
### Parameters
|
216
|
-
|
217
|
-
| Name | Type | Description | Notes |
|
218
|
-
| ---- | ---- | ----------- | ----- |
|
219
|
-
| **
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
#
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
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
|
+
|