-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproduct_pricing__v1.yml
634 lines (630 loc) · 16.4 KB
/
product_pricing__v1.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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
90
91
92
93
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
openapi: 3.0.0
info:
version: "1"
title: "ProductPricing"
description: Long running tasks interface
servers:
- url: http://amz-orders-ngx/openapi/ProductPricing/v1
- url: http://host.docker.internal:8082/openapi/ProductPricing/v1
tags:
- name: ProductPricing
paths:
"/listing/{sku}/offers":
get:
tags:
- ProductPricing
operationId: getListingOffers
description: "Returns the lowest priced offers for a single SKU listing."
parameters:
- in: path
name: sku
description: Product SKU
required: true
schema:
type: string
- in: query
name: itemCondition
description: "Filters the offer listings based on item condition. Possible values: New, Used, Collectible, Refurbished, Club."
required: true
schema:
type: string
# $ref: '#/components/schemas/ItemCondition'
- in: query
name: CustomerType
description: "Indicates whether to request Consumer or Business offers. Default is Consumer."
required: false
schema:
type: string
# $ref: '#/components/schemas/CustomerType'
responses:
"200":
description: "Success"
content:
application/json:
schema:
$ref: "#/components/schemas/GetOffersResponse"
"404":
description: "Not found"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
'500':
description: "Internal error"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
"/listing/offersBulk":
get:
tags:
- ProductPricing
operationId: getListingOffersBulk
description: "Returns the lowest priced offers for a bunch of SKU listings."
parameters:
- in: query
name: sku
description: Product SKU
required: true
schema:
type: array
items:
type: string
responses:
"200":
description: "Success"
content:
application/json:
schema:
$ref: "#/components/schemas/GetOffersResponseBulk"
"404":
description: "Not found"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
'500':
description: "Internal error"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
"/products/pricing/price":
get:
tags:
- ProductPricing
operationId: getPricing
description: Returns pricing information for a seller's offer listings based on seller SKU or ASIN.
parameters:
- in: query
name: asins
schema:
type: array
items:
type: string
- in: query
name: skus
schema:
type: array
items:
type: string
- in: query
name: itemType
required: true
schema:
type: string
enum:
- Asin
- Sku
- in: query
name: itemCondition
schema:
type: string
enum:
- New
- Used
- Collectible
- Refurbished
- Club
- in: query
name: offerType
schema:
type: string
enum:
- B2C
- B2B
responses:
"200":
description: "Success"
content:
application/json:
schema:
$ref: "#/components/schemas/GetPricingResponse"
"404":
description: "Not found"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
'500':
description: "Internal error"
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
components:
schemas:
CustomerType:
type: string
enum:
- Consumer
- Business
ItemCondition:
type: string
enum:
- New
- Used
- Collectible
- Refurbished
- Club
ErrorResponse:
type: object
properties:
messages:
type: array
items:
$ref: "#/components/schemas/Message"
description: "Message field is not required"
Message:
type: object
properties:
level:
type: string
enum:
- emergency
- alert
- critical
- error
- warning
- notice
- info
- debug
type:
type: string
enum:
- UNDEFINED
- TRACKNUMBER_ALREADY_EXIST
- ORDER_NOT_FOUND
- UNKNOWN_SHIPPING_METHOD
- UNAVAILABLE_SHIPPING_METHOD
- INVALID_RESPONSE
description: >
UNDEFINED - Any undefined message type
TRACKNUMBER_ALREADY_EXIST - A tracking number already exists
ORDER_NOT_FOUND - Order not found by order number
UNKNOWN_SHIPPING_METHOD - The selected supplier does not have this shipping method (or needs to be added)
UNAVAILABLE_SHIPPING_METHOD - A shipping method exists but is not available for this order
text:
type: string
description: Message, that describes what went wrong
GetPricingResponse:
type: object
properties:
prices:
type: array
items:
$ref: '#/components/schemas/Price'
Price:
type: object
required:
- status
properties:
status:
type: string
SellerSKU:
type: string
ASIN:
type: string
Product:
$ref: '#/components/schemas/Product'
Product:
type: object
required:
- Identifiers
properties:
Identifiers:
$ref: '#/components/schemas/IdentifierType'
AttributeSets:
type: object
description: due to a poor amazon documentation here be json object with no defined stucture
additionalProperties: true
Relationships:
type: object
description: due to a poor amazon documentation here be json object with no defined stucture
additionalProperties: true
CompetitivePricing:
$ref: '#/components/schemas/CompetitivePricingType'
SalesRankings:
type: array
items:
$ref: '#/components/schemas/SalesRankType'
Offers:
type: array
items:
type: string
# enum:
# - B2C
# - B2B
IdentifierType:
type: object
required:
- MarketplaceASIN
properties:
MarketplaceASIN:
$ref: '#/components/schemas/ASINIdentifier'
SKUIdentifier:
$ref: '#/components/schemas/SellerSKUIdentifier'
ASINIdentifier:
type: object
required:
- MarketplaceId
- ASIN
properties:
MarketplaceId:
type: string
ASIN:
type: string
SellerSKUIdentifier:
type: object
required:
- MarketplaceId
- SellerId
- SellerSKU
properties:
MarketplaceId:
type: string
SellerId:
type: string
SellerSKU:
type: string
CompetitivePricingType:
type: object
required:
- CompetitivePrices
- NumberOfOfferListings
properties:
CompetitivePrices:
type: array
items:
$ref: '#/components/schemas/CompetitivePriceType'
NumberOfOfferListings:
type: array
items:
$ref: '#/components/schemas/OfferListingCountType'
TradeInValue:
$ref: '#/components/schemas/MoneyType'
OfferListingCountType:
type: object
required:
- Count
- condition
properties:
Count:
type: number
condition:
type: string
CompetitivePriceType:
type: object
required:
- CompetitivePriceId
- Price
properties:
CompetitivePriceId:
type: string
Price:
$ref: '#/components/schemas/PriceType'
condition:
type: string
subcondition:
type: string
offerType:
type: string
enum:
- B2C
- B2B
quantityTier:
type: number
quantityDiscountType:
type: string
enum:
- QUANTITY_DISCOUNT
sellerId:
type: string
belongsToRequester:
type: boolean
PriceType:
type: object
required:
- ListingPrice
properties:
LandedPrice:
$ref: '#/components/schemas/MoneyType'
ListingPrice:
$ref: '#/components/schemas/MoneyType'
Shipping:
$ref: '#/components/schemas/MoneyType'
Points:
$ref: '#/components/schemas/Points'
OfferResponseItem:
type: object
properties:
status:
type: string
ASIN:
type: string
Summary:
$ref: '#/components/schemas/Summary'
offers:
type: array
items:
$ref: '#/components/schemas/Offer'
GetOffersResponseBulk:
type: object
properties:
data:
type: array
items:
$ref: "#/components/schemas/OfferResponseItem"
GetOffersResponse:
type: object
properties:
data:
type: object
properties:
status:
type: string
ASIN:
type: string
Summary:
$ref: '#/components/schemas/Summary'
offers:
type: array
items:
$ref: '#/components/schemas/Offer'
Summary:
type: object
required:
- TotalOfferCount
properties:
TotalOfferCount:
type: number
NumberOfOffers:
type: array
items:
$ref: '#/components/schemas/OfferCountType'
LowestPrices:
type: array
items:
$ref: '#/components/schemas/LowestPriceType'
# BuyBoxPrices
ListPrice:
$ref: '#/components/schemas/MoneyType'
CompetitivePriceThreshold:
$ref: '#/components/schemas/MoneyType'
SuggestedLowerPricePlusShipping:
$ref: '#/components/schemas/MoneyType'
SalesRankings:
type: array
items:
$ref: '#/components/schemas/SalesRankType'
BuyBoxEligibleOffers:
type: array
items:
$ref: '#/components/schemas/OfferCountType'
OffersAvailableTime:
type: string
## Requests
## Resources
Offer:
type: object
required:
- SubCondition
- ShippingTime
- ListingPrice
- Shipping
- IsFulfilledByAmazon
properties:
MyOffer:
type: boolean
description: When true, this is the seller's offer.
offerType:
type: string
enum:
- B2C
- B2B
SubCondition:
type: string
SellerId:
type: string
ConditionNotes:
type: string
SellerFeedbackRating:
$ref: '#/components/schemas/SellerFeedbackType'
ShippingTime:
$ref: '#/components/schemas/DetailedShippingTimeType'
ListingPrice:
$ref: '#/components/schemas/MoneyType'
quantityDiscountPrices:
type: array
items:
$ref: '#/components/schemas/QuantityDiscountPriceType'
Points:
$ref: '#/components/schemas/Points'
Shipping:
$ref: '#/components/schemas/MoneyType'
ShipsFrom:
$ref: '#/components/schemas/ShipsFromType'
IsFulfilledByAmazon:
type: boolean
PrimeInformation:
$ref: '#/components/schemas/PrimeInformationType'
IsBuyBoxWinner:
type: boolean
description: |
When true, the offer is currently in the Buy Box.
There can be up to two Buy Box winners at any time per ASIN,
one that is eligible for Prime and one that is not eligible for Prime.
IsFeaturedMerchant:
type: boolean
description: |
When true, the seller of the item is eligible to win the Buy Box.
OfferCustomerType:
type: string
enum:
- B2C
- B2B
SellerFeedbackType:
type: object
required:
- FeedbackCount
properties:
SellerPositiveFeedbackRating:
type: number
description: |
The percentage of positive feedback for the seller in the past 365 days.
FeedbackCount:
type: number
description: |
The number of ratings received about the seller.
DetailedShippingTimeType:
type: object
properties:
minimumHours:
type: number
maximumHours:
type: number
availableDate:
type: string
availabilityType:
type: string
enum:
- NOW
- FUTURE_WITHOUT_DATE
- FUTURE_WITH_DATE
- ""
AvailabilityType:
type: string
enum:
- NOW
- FUTURE_WITHOUT_DATE
- FUTURE_WITH_DATE
- ""
MoneyType:
type: object
properties:
CurrencyCode:
type: string
Amount:
type: number
QuantityDiscountPriceType:
type: object
required:
- quantityTier
- quantityDiscountType
- listingPrice
properties:
quantityTier:
type: number
quantityDiscountType:
type: string
enum:
- QUANTITY_DISCOUNT
listingPrice:
$ref: '#/components/schemas/MoneyType'
QuantityDiscountType:
type: string
enum:
- QUANTITY_DISCOUNT
Points:
type: object
properties:
PointsNumber:
type: number
PointsMonetaryValue:
$ref: '#/components/schemas/MoneyType'
ShipsFromType:
type: object
properties:
State:
type: string
Country:
type: string
PrimeInformationType:
type: object
required:
- IsPrime
- IsNationalPrime
properties:
IsPrime:
type: boolean
description: |
Indicates whether the offer is an Amazon Prime offer.
IsNationalPrime:
type: boolean
description: |
Indicates whether the offer is an Amazon Prime offer throughout the entire marketplace where it is listed.
OfferCountType:
type: object
properties:
condition:
type: string
fulfillmentChannel:
type: string
enum:
- Amazon
- Merchant
- ""
OfferCount:
type: number
LowestPriceType:
type: object
required:
- condition
- fulfillmentChannel
- LandedPrice
- ListingPrice
- Shipping
properties:
condition:
type: string
fulfillmentChannel:
type: string
offerType:
type: string
enum:
- B2C
- B2B
quantityTier:
type: number
quantityDiscountType:
type: string
enum:
- QUANTITY_DISCOUNT
LandedPrice:
$ref: '#/components/schemas/MoneyType'
ListingPrice:
$ref: '#/components/schemas/MoneyType'
Shipping:
$ref: '#/components/schemas/MoneyType'
Points:
$ref: '#/components/schemas/Points'
SalesRankType:
type: object
required:
- ProductCategoryId
- Rank
properties:
ProductCategoryId:
type: string
Rank:
type: number