@amazon-sp-api-release/amazon-sp-api-sdk-js 1.0.0-rc5 → 1.0.0-rc7
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.
- package/helper/DefaultRateLimitFetcher.mjs +59 -0
- package/helper/LwaAuthClient.mjs +56 -22
- package/helper/RateLimitConfiguration.mjs +53 -0
- package/helper/ScopeConstants.mjs +8 -0
- package/helper/SuperagentRateLimiter.mjs +51 -0
- package/helper/rate-limits.yml +874 -0
- package/index.js +51 -49
- package/package.json +6 -6
- package/sample-node-app/app.config.mjs +4 -3
- package/sample-node-app/index.js +155 -24
- package/src/apluscontent_v2020_11_01/ApiClient.js +152 -70
- package/src/apluscontent_v2020_11_01/api/AplusContentApi.js +10 -10
- package/src/appintegrations_v2024_04_01/ApiClient.js +152 -70
- package/src/appintegrations_v2024_04_01/api/AppIntegrationsApi.js +3 -3
- package/src/applications_v2023_11_30/ApiClient.js +152 -70
- package/src/applications_v2023_11_30/api/ApplicationsApi.js +1 -1
- package/src/awd_v2024_05_09/ApiClient.js +152 -70
- package/src/awd_v2024_05_09/api/AwdApi.js +11 -11
- package/src/catalogitems_v2022_04_01/ApiClient.js +152 -70
- package/src/catalogitems_v2022_04_01/api/CatalogApi.js +2 -2
- package/src/datakiosk_v2023_11_15/ApiClient.js +152 -70
- package/src/datakiosk_v2023_11_15/api/QueriesApi.js +5 -5
- package/src/easyship_v2022_03_23/ApiClient.js +152 -70
- package/src/easyship_v2022_03_23/api/EasyShipApi.js +5 -5
- package/src/fbaeligibility_v1/ApiClient.js +152 -70
- package/src/fbaeligibility_v1/api/FbaInboundApi.js +1 -1
- package/src/fbainventory_v1/ApiClient.js +152 -70
- package/src/fbainventory_v1/api/FbaInventoryApi.js +4 -4
- package/src/feeds_v2021_06_30/ApiClient.js +152 -70
- package/src/feeds_v2021_06_30/api/FeedsApi.js +6 -6
- package/src/finances_2024_06_19/ApiClient.js +152 -70
- package/src/finances_2024_06_19/api/DefaultApi.js +1 -1
- package/src/finances_v0/ApiClient.js +152 -70
- package/src/finances_v0/api/DefaultApi.js +4 -4
- package/src/fulfillmentinbound_v0/ApiClient.js +152 -70
- package/src/fulfillmentinbound_v0/api/FbaInboundApi.js +6 -6
- package/src/fulfillmentinbound_v2024_03_20/ApiClient.js +152 -70
- package/src/fulfillmentinbound_v2024_03_20/api/FbaInboundApi.js +45 -45
- package/src/fulfillmentoutbound_v2020_07_01/ApiClient.js +152 -70
- package/src/fulfillmentoutbound_v2020_07_01/api/FbaOutboundApi.js +14 -14
- package/src/invoices_v2024_06_19/ApiClient.js +152 -70
- package/src/invoices_v2024_06_19/api/InvoicesApi.js +7 -7
- package/src/invoicing_v0/ApiClient.js +152 -70
- package/src/invoicing_v0/api/ShipmentInvoiceApi.js +3 -3
- package/src/listingsitems_v2021_08_01/ApiClient.js +152 -70
- package/src/listingsitems_v2021_08_01/api/ListingsApi.js +5 -5
- package/src/listingsrestrictions_v2021_08_01/ApiClient.js +152 -70
- package/src/listingsrestrictions_v2021_08_01/api/ListingsApi.js +1 -1
- package/src/merchantfulfillment_v0/ApiClient.js +152 -70
- package/src/merchantfulfillment_v0/api/MerchantFulfillmentApi.js +5 -5
- package/src/messaging_v1/ApiClient.js +152 -70
- package/src/messaging_v1/api/MessagingApi.js +13 -13
- package/src/notifications_v1/ApiClient.js +152 -70
- package/src/notifications_v1/api/NotificationsApi.js +8 -8
- package/src/orders_v0/ApiClient.js +152 -70
- package/src/orders_v0/api/OrdersV0Api.js +9 -9
- package/src/orders_v0/api/ShipmentApi.js +1 -1
- package/src/pricing_v0/ApiClient.js +152 -70
- package/src/pricing_v0/api/ProductPricingApi.js +6 -6
- package/src/pricing_v2022_05_01/ApiClient.js +152 -70
- package/src/pricing_v2022_05_01/api/ProductPricingApi.js +2 -2
- package/src/productfees_v0/ApiClient.js +152 -70
- package/src/productfees_v0/api/FeesApi.js +3 -3
- package/src/producttypedefinitions_v2020_09_01/ApiClient.js +152 -70
- package/src/producttypedefinitions_v2020_09_01/api/DefinitionsApi.js +2 -2
- package/src/replenishment_v2022_11_07/ApiClient.js +152 -70
- package/src/replenishment_v2022_11_07/api/OffersApi.js +2 -2
- package/src/replenishment_v2022_11_07/api/SellingpartnersApi.js +1 -1
- package/src/reports_v2021_06_30/ApiClient.js +152 -70
- package/src/reports_v2021_06_30/api/ReportsApi.js +9 -9
- package/src/sales_v1/ApiClient.js +152 -70
- package/src/sales_v1/api/SalesApi.js +1 -1
- package/src/sellers_v1/ApiClient.js +152 -70
- package/src/sellers_v1/api/SellersApi.js +2 -2
- package/src/services_v1/ApiClient.js +152 -70
- package/src/services_v1/api/ServiceApi.js +17 -17
- package/src/shipping_v2/ApiClient.js +152 -70
- package/src/shipping_v2/api/ShippingApi.js +20 -20
- package/src/solicitations_v1/ApiClient.js +152 -70
- package/src/solicitations_v1/api/SolicitationsApi.js +2 -2
- package/src/supplysources_v2020_07_01/ApiClient.js +152 -70
- package/src/supplysources_v2020_07_01/api/SupplySourcesApi.js +6 -6
- package/src/tokens_v2021_03_01/ApiClient.js +152 -70
- package/src/tokens_v2021_03_01/api/TokensApi.js +1 -1
- package/src/transfers_v2024_06_01/ApiClient.js +152 -70
- package/src/transfers_v2024_06_01/api/DefaultApi.js +2 -2
- package/src/uploads_v2020_11_01/ApiClient.js +152 -70
- package/src/uploads_v2020_11_01/api/UploadsApi.js +1 -1
- package/src/vehicles_v2024_11_01/ApiClient.js +152 -70
- package/src/vehicles_v2024_11_01/api/AutomotiveApi.js +1 -1
- package/src/vehicles_v2024_11_01/api/VehiclesApi.js +1 -1
- package/src/vendordfinventory_v1/ApiClient.js +152 -70
- package/src/vendordfinventory_v1/api/UpdateInventoryApi.js +1 -1
- package/src/vendordforders_v2021_12_28/ApiClient.js +152 -70
- package/src/vendordforders_v2021_12_28/api/VendorOrdersApi.js +3 -3
- package/src/vendordfpayments_v1/ApiClient.js +152 -70
- package/src/vendordfpayments_v1/api/VendorInvoiceApi.js +1 -1
- package/src/vendordfshipping_v2021_12_28/ApiClient.js +152 -70
- package/src/vendordfshipping_v2021_12_28/api/CreateContainerLabelApi.js +1 -1
- package/src/vendordfshipping_v2021_12_28/api/CustomerInvoicesApi.js +2 -2
- package/src/vendordfshipping_v2021_12_28/api/VendorShippingApi.js +4 -4
- package/src/vendordfshipping_v2021_12_28/api/VendorShippingLabelsApi.js +4 -4
- package/src/vendordftransactions_v2021_12_28/ApiClient.js +152 -70
- package/src/vendordftransactions_v2021_12_28/api/VendorTransactionApi.js +1 -1
- package/src/vendorinvoices_v1/ApiClient.js +152 -70
- package/src/vendorinvoices_v1/api/VendorPaymentsApi.js +1 -1
- package/src/vendororders_v1/ApiClient.js +152 -70
- package/src/vendororders_v1/api/VendorOrdersApi.js +4 -4
- package/src/vendorshipments_v1/ApiClient.js +152 -70
- package/src/vendorshipments_v1/api/VendorShippingApi.js +4 -4
- package/src/vendortransactionstatus_v1/ApiClient.js +152 -70
- package/src/vendortransactionstatus_v1/api/VendorTransactionApi.js +1 -1
- package/README.md +0 -107
|
@@ -0,0 +1,874 @@
|
|
|
1
|
+
# Rate limits for SP-API (rate, burst)
|
|
2
|
+
# AWD API
|
|
3
|
+
AwdApi-getInboundShipment:
|
|
4
|
+
- 2
|
|
5
|
+
- 2
|
|
6
|
+
AwdApi-listInboundShipments:
|
|
7
|
+
- 1
|
|
8
|
+
- 1
|
|
9
|
+
AwdApi-listInventory:
|
|
10
|
+
- 2
|
|
11
|
+
- 2
|
|
12
|
+
AwdApi-createInbound:
|
|
13
|
+
- 1
|
|
14
|
+
- 1
|
|
15
|
+
AwdApi-getInbound:
|
|
16
|
+
- 2
|
|
17
|
+
- 2
|
|
18
|
+
AwdApi-updateInbound:
|
|
19
|
+
- 1
|
|
20
|
+
- 1
|
|
21
|
+
AwdApi-cancelInbound:
|
|
22
|
+
- 1
|
|
23
|
+
- 1
|
|
24
|
+
AwdApi-confirmInbound:
|
|
25
|
+
- 1
|
|
26
|
+
- 1
|
|
27
|
+
AwdApi-getInboundShipmentLabels:
|
|
28
|
+
- 1
|
|
29
|
+
- 2
|
|
30
|
+
AwdApi-updateInboundShipmentTransportDetails:
|
|
31
|
+
- 1
|
|
32
|
+
- 1
|
|
33
|
+
AwdApi-checkInboundEligibility:
|
|
34
|
+
- 1
|
|
35
|
+
- 1
|
|
36
|
+
# A+ Content API
|
|
37
|
+
AplusContentApi-searchContentDocuments:
|
|
38
|
+
- 5
|
|
39
|
+
- 5
|
|
40
|
+
AplusContentApi-createContentDocument:
|
|
41
|
+
- 5
|
|
42
|
+
- 5
|
|
43
|
+
AplusContentApi-getContentDocument:
|
|
44
|
+
- 5
|
|
45
|
+
- 5
|
|
46
|
+
AplusContentApi-updateContentDocument:
|
|
47
|
+
- 5
|
|
48
|
+
- 5
|
|
49
|
+
AplusContentApi-listContentDocumentAsinRelations:
|
|
50
|
+
- 5
|
|
51
|
+
- 5
|
|
52
|
+
AplusContentApi-postContentDocumentAsinRelations:
|
|
53
|
+
- 5
|
|
54
|
+
- 5
|
|
55
|
+
AplusContentApi-validateContentDocumentAsinRelations:
|
|
56
|
+
- 5
|
|
57
|
+
- 5
|
|
58
|
+
AplusContentApi-searchContentPublishRecords:
|
|
59
|
+
- 5
|
|
60
|
+
- 5
|
|
61
|
+
AplusContentApi-postContentDocumentApprovalSubmission:
|
|
62
|
+
- 5
|
|
63
|
+
- 5
|
|
64
|
+
AplusContentApi-postContentDocumentSuspendSubmission:
|
|
65
|
+
- 5
|
|
66
|
+
- 5
|
|
67
|
+
# App Integrations API
|
|
68
|
+
AppIntegrationsApi-createNotification:
|
|
69
|
+
- 1
|
|
70
|
+
- 5
|
|
71
|
+
AppIntegrationsApi-deleteNotifications:
|
|
72
|
+
- 1
|
|
73
|
+
- 5
|
|
74
|
+
AppIntegrationsApi-recordActionFeedback:
|
|
75
|
+
- 1
|
|
76
|
+
- 5
|
|
77
|
+
# App Management API
|
|
78
|
+
ApplicationsApi-rotateApplicationClientSecret:
|
|
79
|
+
- 1
|
|
80
|
+
- 1
|
|
81
|
+
- 60
|
|
82
|
+
# Catalog Items API
|
|
83
|
+
CatalogApi-getCatalogItem:
|
|
84
|
+
- 2
|
|
85
|
+
- 2
|
|
86
|
+
CatalogApi-searchCatalogItems:
|
|
87
|
+
- 2
|
|
88
|
+
- 2
|
|
89
|
+
# Data Kiosk API
|
|
90
|
+
QueriesApi-getQueries:
|
|
91
|
+
- 1
|
|
92
|
+
- 15
|
|
93
|
+
- 60
|
|
94
|
+
QueriesApi-createQuery:
|
|
95
|
+
- 1
|
|
96
|
+
- 15
|
|
97
|
+
- 60
|
|
98
|
+
QueriesApi-getQuery:
|
|
99
|
+
- 2
|
|
100
|
+
- 15
|
|
101
|
+
QueriesApi-cancelQuery:
|
|
102
|
+
- 2
|
|
103
|
+
- 15
|
|
104
|
+
QueriesApi-getDocument:
|
|
105
|
+
- 1
|
|
106
|
+
- 15
|
|
107
|
+
- 60
|
|
108
|
+
# Easy Ship API
|
|
109
|
+
EasyShip-listHandoverSlots:
|
|
110
|
+
- 1
|
|
111
|
+
- 5
|
|
112
|
+
EasyShip-getScheduledPackage:
|
|
113
|
+
- 1
|
|
114
|
+
- 5
|
|
115
|
+
EasyShip-createScheduledPackage:
|
|
116
|
+
- 1
|
|
117
|
+
- 5
|
|
118
|
+
EasyShip-updateScheduledPackages:
|
|
119
|
+
- 1
|
|
120
|
+
- 5
|
|
121
|
+
EasyShip-createScheduledPackageBulk:
|
|
122
|
+
- 1
|
|
123
|
+
- 5
|
|
124
|
+
# FBA Inbound Eligibility API
|
|
125
|
+
FbaInboundApi-getItemEligibilityPreview:
|
|
126
|
+
- 1
|
|
127
|
+
- 1
|
|
128
|
+
# FBA Inventory API
|
|
129
|
+
FbaInventoryApi-getInventorySummaries:
|
|
130
|
+
- 2
|
|
131
|
+
- 2
|
|
132
|
+
FbaInventoryApi-createInventoryItem:
|
|
133
|
+
- 2
|
|
134
|
+
- 3
|
|
135
|
+
FbaInventoryApi-deleteInventoryItem:
|
|
136
|
+
- 2
|
|
137
|
+
- 3
|
|
138
|
+
FbaInventoryApi-addInventory:
|
|
139
|
+
- 2
|
|
140
|
+
- 3
|
|
141
|
+
# Feeds API
|
|
142
|
+
FeedsApi-cancelFeed:
|
|
143
|
+
- 2
|
|
144
|
+
- 15
|
|
145
|
+
FeedsApi-createFeed:
|
|
146
|
+
- 1
|
|
147
|
+
- 15
|
|
148
|
+
- 120
|
|
149
|
+
FeedsApi-createFeedDocument:
|
|
150
|
+
- 1
|
|
151
|
+
- 15
|
|
152
|
+
- 2
|
|
153
|
+
FeedsApi-getFeed:
|
|
154
|
+
- 2
|
|
155
|
+
- 15
|
|
156
|
+
FeedsApi-getFeeds:
|
|
157
|
+
- 1
|
|
158
|
+
- 10
|
|
159
|
+
- 45
|
|
160
|
+
FeedsApi-getFeedDocument:
|
|
161
|
+
- 1
|
|
162
|
+
- 10
|
|
163
|
+
- 45
|
|
164
|
+
# Finances V0 API
|
|
165
|
+
DefaultApi-listFinancialEventGroups:
|
|
166
|
+
- 1
|
|
167
|
+
- 30
|
|
168
|
+
- 2
|
|
169
|
+
DefaultApi-listFinancialEventsByGroupId:
|
|
170
|
+
- 1
|
|
171
|
+
- 30
|
|
172
|
+
- 2
|
|
173
|
+
DefaultApi-listFinancialEventsByOrderId:
|
|
174
|
+
- 1
|
|
175
|
+
- 30
|
|
176
|
+
- 2
|
|
177
|
+
DefaultApi-listFinancialEvents:
|
|
178
|
+
- 1
|
|
179
|
+
- 30
|
|
180
|
+
- 2
|
|
181
|
+
# Transfers API
|
|
182
|
+
DefaultApi-initiatePayout:
|
|
183
|
+
- 1
|
|
184
|
+
- 2
|
|
185
|
+
- 60
|
|
186
|
+
DefaultApi-getPaymentMethods:
|
|
187
|
+
- 1
|
|
188
|
+
- 30
|
|
189
|
+
- 2
|
|
190
|
+
# FBA Inbound V0 API
|
|
191
|
+
FbaInboundApi-getPrepInstructions:
|
|
192
|
+
- 2
|
|
193
|
+
- 30
|
|
194
|
+
FbaInboundApi-getLabels:
|
|
195
|
+
- 2
|
|
196
|
+
- 30
|
|
197
|
+
FbaInboundApi-getBillOfLading:
|
|
198
|
+
- 2
|
|
199
|
+
- 30
|
|
200
|
+
FbaInboundApi-getShipments:
|
|
201
|
+
- 2
|
|
202
|
+
- 30
|
|
203
|
+
FbaInboundApi-getShipmentItemsByShipmentId:
|
|
204
|
+
- 2
|
|
205
|
+
- 30
|
|
206
|
+
FbaInboundApi-getShipmentItems:
|
|
207
|
+
- 2
|
|
208
|
+
- 30
|
|
209
|
+
# FBA Inbound V2024-03-20 API
|
|
210
|
+
FbaInboundApi-listInboundPlans:
|
|
211
|
+
- 2
|
|
212
|
+
- 6
|
|
213
|
+
FbaInboundApi-createInboundPlan:
|
|
214
|
+
- 2
|
|
215
|
+
- 2
|
|
216
|
+
FbaInboundApi-getInboundPlan:
|
|
217
|
+
- 2
|
|
218
|
+
- 6
|
|
219
|
+
FbaInboundApi-listInboundPlanBoxes:
|
|
220
|
+
- 2
|
|
221
|
+
- 6
|
|
222
|
+
FbaInboundApi-cancelInboundPlan:
|
|
223
|
+
- 2
|
|
224
|
+
- 2
|
|
225
|
+
FbaInboundApi-listInboundPlanItems:
|
|
226
|
+
- 2
|
|
227
|
+
- 6
|
|
228
|
+
FbaInboundApi-updateInboundPlanName:
|
|
229
|
+
- 2
|
|
230
|
+
- 30
|
|
231
|
+
FbaInboundApi-listPackingGroupBoxes:
|
|
232
|
+
- 2
|
|
233
|
+
- 30
|
|
234
|
+
FbaInboundApi-listPackingGroupItems:
|
|
235
|
+
- 2
|
|
236
|
+
- 30
|
|
237
|
+
FbaInboundApi-setPackingInformation:
|
|
238
|
+
- 2
|
|
239
|
+
- 2
|
|
240
|
+
FbaInboundApi-listPackingOptions:
|
|
241
|
+
- 2
|
|
242
|
+
- 6
|
|
243
|
+
FbaInboundApi-generatePackingOptions:
|
|
244
|
+
- 2
|
|
245
|
+
- 2
|
|
246
|
+
FbaInboundApi-confirmPackingOption:
|
|
247
|
+
- 2
|
|
248
|
+
- 2
|
|
249
|
+
FbaInboundApi-listInboundPlanPallets:
|
|
250
|
+
- 2
|
|
251
|
+
- 6
|
|
252
|
+
FbaInboundApi-listPlacementOptions:
|
|
253
|
+
- 2
|
|
254
|
+
- 6
|
|
255
|
+
FbaInboundApi-generatePlacementOptions:
|
|
256
|
+
- 2
|
|
257
|
+
- 2
|
|
258
|
+
FbaInboundApi-confirmPlacementOption:
|
|
259
|
+
- 2
|
|
260
|
+
- 2
|
|
261
|
+
FbaInboundApi-getShipment:
|
|
262
|
+
- 2
|
|
263
|
+
- 6
|
|
264
|
+
FbaInboundApi-listShipmentBoxes:
|
|
265
|
+
- 2
|
|
266
|
+
- 30
|
|
267
|
+
FbaInboundApi-listShipmentContentUpdatePreviews:
|
|
268
|
+
- 2
|
|
269
|
+
- 30
|
|
270
|
+
FbaInboundApi-generateShipmentContentUpdatePreviews:
|
|
271
|
+
- 2
|
|
272
|
+
- 30
|
|
273
|
+
FbaInboundApi-getShipmentContentUpdatePreview:
|
|
274
|
+
- 2
|
|
275
|
+
- 30
|
|
276
|
+
FbaInboundApi-confirmShipmentContentUpdatePreview:
|
|
277
|
+
- 2
|
|
278
|
+
- 30
|
|
279
|
+
FbaInboundApi-getDeliveryChallanDocument:
|
|
280
|
+
- 2
|
|
281
|
+
- 6
|
|
282
|
+
FbaInboundApi-listDeliveryWindowOptions:
|
|
283
|
+
- 2
|
|
284
|
+
- 30
|
|
285
|
+
FbaInboundApi-generateDeliveryWindowOptions:
|
|
286
|
+
- 2
|
|
287
|
+
- 30
|
|
288
|
+
FbaInboundApi-confirmDeliveryWindowOptions:
|
|
289
|
+
- 2
|
|
290
|
+
- 30
|
|
291
|
+
FbaInboundApi-listShipmentItems:
|
|
292
|
+
- 2
|
|
293
|
+
- 30
|
|
294
|
+
FbaInboundApi-updateShipmentName:
|
|
295
|
+
- 2
|
|
296
|
+
- 30
|
|
297
|
+
FbaInboundApi-listShipmentPallets:
|
|
298
|
+
- 2
|
|
299
|
+
- 30
|
|
300
|
+
FbaInboundApi-cancelSelfShipAppointment:
|
|
301
|
+
- 2
|
|
302
|
+
- 30
|
|
303
|
+
FbaInboundApi-getSelfShipAppointmentSlots:
|
|
304
|
+
- 2
|
|
305
|
+
- 6
|
|
306
|
+
FbaInboundApi-generateSelfShipAppointmentSlots:
|
|
307
|
+
- 2
|
|
308
|
+
- 2
|
|
309
|
+
FbaInboundApi-scheduleSelfShipAppointment:
|
|
310
|
+
- 2
|
|
311
|
+
- 2
|
|
312
|
+
FbaInboundApi-updateShipmentSourceAddress:
|
|
313
|
+
- 2
|
|
314
|
+
- 30
|
|
315
|
+
FbaInboundApi-updateShipmentTrackingDetails:
|
|
316
|
+
- 2
|
|
317
|
+
- 2
|
|
318
|
+
FbaInboundApi-listTransportationOptions:
|
|
319
|
+
- 2
|
|
320
|
+
- 6
|
|
321
|
+
FbaInboundApi-generateTransportationOptions:
|
|
322
|
+
- 2
|
|
323
|
+
- 2
|
|
324
|
+
FbaInboundApi-confirmTransportationOptions:
|
|
325
|
+
- 2
|
|
326
|
+
- 2
|
|
327
|
+
FbaInboundApi-listItemComplianceDetails:
|
|
328
|
+
- 2
|
|
329
|
+
- 6
|
|
330
|
+
FbaInboundApi-updateItemComplianceDetails:
|
|
331
|
+
- 2
|
|
332
|
+
- 2
|
|
333
|
+
FbaInboundApi-createMarketplaceItemLabels:
|
|
334
|
+
- 2
|
|
335
|
+
- 30
|
|
336
|
+
FbaInboundApi-listPrepDetails:
|
|
337
|
+
- 2
|
|
338
|
+
- 30
|
|
339
|
+
FbaInboundApi-setPrepDetails:
|
|
340
|
+
- 2
|
|
341
|
+
- 30
|
|
342
|
+
FbaInboundApi-getInboundOperationStatus:
|
|
343
|
+
- 2
|
|
344
|
+
- 6
|
|
345
|
+
# FBA Outbound API
|
|
346
|
+
FbaOutboundApi-getFulfillmentPreview:
|
|
347
|
+
- 2
|
|
348
|
+
- 30
|
|
349
|
+
FbaOutboundApi-deliveryOffers:
|
|
350
|
+
- 10
|
|
351
|
+
- 30
|
|
352
|
+
FbaOutboundApi-listAllFulfillmentOrders:
|
|
353
|
+
- 2
|
|
354
|
+
- 30
|
|
355
|
+
FbaOutboundApi-createFulfillmentOrder:
|
|
356
|
+
- 2
|
|
357
|
+
- 30
|
|
358
|
+
FbaOutboundApi-getPackageTrackingDetails:
|
|
359
|
+
- 2
|
|
360
|
+
- 30
|
|
361
|
+
FbaOutboundApi-listReturnReasonCodes:
|
|
362
|
+
- 2
|
|
363
|
+
- 30
|
|
364
|
+
FbaOutboundApi-createFulfillmentReturn:
|
|
365
|
+
- 2
|
|
366
|
+
- 30
|
|
367
|
+
FbaOutboundApi-getFulfillmentOrder:
|
|
368
|
+
- 2
|
|
369
|
+
- 30
|
|
370
|
+
FbaOutboundApi-updateFulfillmentOrder:
|
|
371
|
+
- 2
|
|
372
|
+
- 30
|
|
373
|
+
FbaOutboundApi-cancelFulfillmentOrder:
|
|
374
|
+
- 2
|
|
375
|
+
- 30
|
|
376
|
+
FbaOutboundApi-submitFulfillmentOrderStatusUpdate:
|
|
377
|
+
- 1
|
|
378
|
+
- 1
|
|
379
|
+
FbaOutboundApi-getFeatures:
|
|
380
|
+
- 2
|
|
381
|
+
- 30
|
|
382
|
+
FbaOutboundApi-getFeatureInventory:
|
|
383
|
+
- 2
|
|
384
|
+
- 30
|
|
385
|
+
FbaOutboundApi-getFeatureSKU:
|
|
386
|
+
- 2
|
|
387
|
+
- 30
|
|
388
|
+
# Invoices API
|
|
389
|
+
InvoicesApi-getInvoicesAttributes:
|
|
390
|
+
- 1
|
|
391
|
+
- 1
|
|
392
|
+
InvoicesApi-getInvoicesDocument:
|
|
393
|
+
- 1
|
|
394
|
+
- 1
|
|
395
|
+
- 60
|
|
396
|
+
InvoicesApi-createInvoicesExport:
|
|
397
|
+
- 1
|
|
398
|
+
- 1
|
|
399
|
+
- 60
|
|
400
|
+
InvoicesApi-getInvoicesExports:
|
|
401
|
+
- 1
|
|
402
|
+
- 20
|
|
403
|
+
- 10
|
|
404
|
+
InvoicesApi-getInvoicesExport:
|
|
405
|
+
- 2
|
|
406
|
+
- 15
|
|
407
|
+
InvoicesApi-getInvoices:
|
|
408
|
+
- 1
|
|
409
|
+
- 20
|
|
410
|
+
- 10
|
|
411
|
+
InvoicesApi-getInvoice:
|
|
412
|
+
- 2
|
|
413
|
+
- 15
|
|
414
|
+
# Listings Items API
|
|
415
|
+
ListingsApi-deleteListingsItem:
|
|
416
|
+
- 5
|
|
417
|
+
- 5
|
|
418
|
+
ListingsApi-getListingsItem:
|
|
419
|
+
- 5
|
|
420
|
+
- 5
|
|
421
|
+
ListingsApi-patchListingsItem:
|
|
422
|
+
- 5
|
|
423
|
+
- 5
|
|
424
|
+
ListingsApi-putListingsItem:
|
|
425
|
+
- 5
|
|
426
|
+
- 5
|
|
427
|
+
ListingsApi-searchListingsItems:
|
|
428
|
+
- 5
|
|
429
|
+
- 5
|
|
430
|
+
# Listings Restrictions API
|
|
431
|
+
ListingsApi-getListingsRestrictions:
|
|
432
|
+
- 5
|
|
433
|
+
- 10
|
|
434
|
+
# Merchant Fulfillment API
|
|
435
|
+
MerchantFulfillmentApi-getEligibleShipmentServices:
|
|
436
|
+
- 6
|
|
437
|
+
- 12
|
|
438
|
+
MerchantFulfillmentApi-getShipment:
|
|
439
|
+
- 5
|
|
440
|
+
- 10
|
|
441
|
+
MerchantFulfillmentApi-cancelShipment:
|
|
442
|
+
- 5
|
|
443
|
+
- 10
|
|
444
|
+
MerchantFulfillmentApi-createShipment:
|
|
445
|
+
- 5
|
|
446
|
+
- 10
|
|
447
|
+
MerchantFulfillmentApi-getAdditionalSellerInputs:
|
|
448
|
+
- 5
|
|
449
|
+
- 10
|
|
450
|
+
# Messaging API
|
|
451
|
+
MessagingApi-getMessagingActionsForOrder:
|
|
452
|
+
- 1
|
|
453
|
+
- 5
|
|
454
|
+
MessagingApi-confirmCustomizationDetails:
|
|
455
|
+
- 1
|
|
456
|
+
- 5
|
|
457
|
+
MessagingApi-createConfirmDeliveryDetails:
|
|
458
|
+
- 1
|
|
459
|
+
- 5
|
|
460
|
+
MessagingApi-createLegalDisclosure:
|
|
461
|
+
- 1
|
|
462
|
+
- 5
|
|
463
|
+
MessagingApi-createNegativeFeedbackRemoval:
|
|
464
|
+
- 1
|
|
465
|
+
- 5
|
|
466
|
+
MessagingApi-createConfirmOrderDetails:
|
|
467
|
+
- 1
|
|
468
|
+
- 5
|
|
469
|
+
MessagingApi-createConfirmServiceDetails:
|
|
470
|
+
- 1
|
|
471
|
+
- 5
|
|
472
|
+
MessagingApi-CreateAmazonMotors:
|
|
473
|
+
- 1
|
|
474
|
+
- 5
|
|
475
|
+
MessagingApi-CreateWarranty:
|
|
476
|
+
- 1
|
|
477
|
+
- 5
|
|
478
|
+
MessagingApi-GetAttributes:
|
|
479
|
+
- 1
|
|
480
|
+
- 5
|
|
481
|
+
MessagingApi-createDigitalAccessKey:
|
|
482
|
+
- 1
|
|
483
|
+
- 5
|
|
484
|
+
MessagingApi-createUnexpectedProblem:
|
|
485
|
+
- 1
|
|
486
|
+
- 5
|
|
487
|
+
MessagingApi-sendInvoice:
|
|
488
|
+
- 1
|
|
489
|
+
- 5
|
|
490
|
+
# Notifications API
|
|
491
|
+
NotificationsApi-getSubscription:
|
|
492
|
+
- 1
|
|
493
|
+
- 5
|
|
494
|
+
NotificationsApi-createSubscription:
|
|
495
|
+
- 1
|
|
496
|
+
- 5
|
|
497
|
+
NotificationsApi-getSubscriptionById:
|
|
498
|
+
- 1
|
|
499
|
+
- 5
|
|
500
|
+
NotificationsApi-deleteSubscriptionById:
|
|
501
|
+
- 1
|
|
502
|
+
- 5
|
|
503
|
+
NotificationsApi-getDestinations:
|
|
504
|
+
- 1
|
|
505
|
+
- 5
|
|
506
|
+
NotificationsApi-createDestination:
|
|
507
|
+
- 1
|
|
508
|
+
- 5
|
|
509
|
+
NotificationsApi-getDestination:
|
|
510
|
+
- 1
|
|
511
|
+
- 5
|
|
512
|
+
NotificationsApi-deleteDestination:
|
|
513
|
+
- 1
|
|
514
|
+
- 5
|
|
515
|
+
# Orders API
|
|
516
|
+
OrdersV0Api-confirmShipment:
|
|
517
|
+
- 2
|
|
518
|
+
- 10
|
|
519
|
+
OrdersV0Api-getOrder:
|
|
520
|
+
- 1
|
|
521
|
+
- 30
|
|
522
|
+
- 2
|
|
523
|
+
OrdersV0Api-getOrderAddress:
|
|
524
|
+
- 1
|
|
525
|
+
- 30
|
|
526
|
+
- 2
|
|
527
|
+
OrdersV0Api-getOrderBuyerInfo:
|
|
528
|
+
- 1
|
|
529
|
+
- 30
|
|
530
|
+
- 2
|
|
531
|
+
OrdersV0Api-getOrderItems:
|
|
532
|
+
- 1
|
|
533
|
+
- 30
|
|
534
|
+
- 2
|
|
535
|
+
OrdersV0Api-getOrderItemsBuyerInfo:
|
|
536
|
+
- 1
|
|
537
|
+
- 30
|
|
538
|
+
- 2
|
|
539
|
+
OrdersV0Api-getOrderRegulatedInfo:
|
|
540
|
+
- 1
|
|
541
|
+
- 30
|
|
542
|
+
- 2
|
|
543
|
+
OrdersV0Api-getOrders:
|
|
544
|
+
- 1
|
|
545
|
+
- 20
|
|
546
|
+
- 60
|
|
547
|
+
ShipmentApi-updateShipmentStatus:
|
|
548
|
+
- 5
|
|
549
|
+
- 15
|
|
550
|
+
OrdersV0Api-updateVerificationStatus:
|
|
551
|
+
- 1
|
|
552
|
+
- 30
|
|
553
|
+
- 2
|
|
554
|
+
# Product Fees API
|
|
555
|
+
FeesApi-getMyFeesEstimateForSKU:
|
|
556
|
+
- 1
|
|
557
|
+
- 2
|
|
558
|
+
FeesApi-getMyFeesEstimateForASIN:
|
|
559
|
+
- 1
|
|
560
|
+
- 2
|
|
561
|
+
FeesApi-getMyFeesEstimates:
|
|
562
|
+
- 1
|
|
563
|
+
- 1
|
|
564
|
+
- 2
|
|
565
|
+
# Pricing API
|
|
566
|
+
ProductPricingApi-getFeaturedOfferExpectedPriceBatch:
|
|
567
|
+
- 1
|
|
568
|
+
- 1
|
|
569
|
+
- 30
|
|
570
|
+
ProductPricingApi-getCompetitiveSummary:
|
|
571
|
+
- 1
|
|
572
|
+
- 1
|
|
573
|
+
- 30
|
|
574
|
+
ProductPricingApi-getPricing:
|
|
575
|
+
- 1
|
|
576
|
+
- 1
|
|
577
|
+
- 2
|
|
578
|
+
ProductPricingApi-getCompetitivePricing:
|
|
579
|
+
- 1
|
|
580
|
+
- 1
|
|
581
|
+
- 2
|
|
582
|
+
ProductPricingApi-getListingOffers:
|
|
583
|
+
- 1
|
|
584
|
+
- 2
|
|
585
|
+
ProductPricingApi-getItemOffers:
|
|
586
|
+
- 1
|
|
587
|
+
- 1
|
|
588
|
+
- 2
|
|
589
|
+
ProductPricingApi-getItemOffersBatch:
|
|
590
|
+
- 1
|
|
591
|
+
- 1
|
|
592
|
+
- 10
|
|
593
|
+
ProductPricingApi-getListingOffersBatch:
|
|
594
|
+
- 1
|
|
595
|
+
- 1
|
|
596
|
+
- 2
|
|
597
|
+
# Product Type Definitions API
|
|
598
|
+
DefinitionsApi-getDefinitionsProductType:
|
|
599
|
+
- 5
|
|
600
|
+
- 5
|
|
601
|
+
DefinitionsApi-searchDefinitionsProductTypes:
|
|
602
|
+
- 5
|
|
603
|
+
- 5
|
|
604
|
+
# Replenishment API
|
|
605
|
+
SellingpartnersApi-getSellingPartnerMetrics:
|
|
606
|
+
- 1
|
|
607
|
+
- 1
|
|
608
|
+
OffersApi-listOfferMetrics:
|
|
609
|
+
- 1
|
|
610
|
+
- 1
|
|
611
|
+
OffersApi-listOffers:
|
|
612
|
+
- 1
|
|
613
|
+
- 1
|
|
614
|
+
# Reports API
|
|
615
|
+
ReportsApi-getReports:
|
|
616
|
+
- 1
|
|
617
|
+
- 10
|
|
618
|
+
- 45
|
|
619
|
+
ReportsApi-createReport:
|
|
620
|
+
- 1
|
|
621
|
+
- 15
|
|
622
|
+
- 60
|
|
623
|
+
ReportsApi-cancelReport:
|
|
624
|
+
- 1
|
|
625
|
+
- 10
|
|
626
|
+
- 45
|
|
627
|
+
ReportsApi-getReport:
|
|
628
|
+
- 2
|
|
629
|
+
- 15
|
|
630
|
+
ReportsApi-getReportSchedules:
|
|
631
|
+
- 1
|
|
632
|
+
- 10
|
|
633
|
+
- 45
|
|
634
|
+
ReportsApi-createReportSchedule:
|
|
635
|
+
- 1
|
|
636
|
+
- 10
|
|
637
|
+
- 45
|
|
638
|
+
ReportsApi-cancelReportSchedule:
|
|
639
|
+
- 1
|
|
640
|
+
- 10
|
|
641
|
+
- 45
|
|
642
|
+
ReportsApi-getReportSchedule:
|
|
643
|
+
- 1
|
|
644
|
+
- 10
|
|
645
|
+
- 45
|
|
646
|
+
ReportsApi-getReportDocument:
|
|
647
|
+
- 1
|
|
648
|
+
- 15
|
|
649
|
+
- 60
|
|
650
|
+
# Sales API
|
|
651
|
+
SalesApi-getOrderMetrics:
|
|
652
|
+
- 1
|
|
653
|
+
- 15
|
|
654
|
+
- 2
|
|
655
|
+
# Sellers API
|
|
656
|
+
SellersApi-getMarketplaceParticipations:
|
|
657
|
+
- 1
|
|
658
|
+
- 15
|
|
659
|
+
- 60
|
|
660
|
+
SellersApi-getAccount:
|
|
661
|
+
- 1
|
|
662
|
+
- 30
|
|
663
|
+
- 2
|
|
664
|
+
# Services API
|
|
665
|
+
ServiceApi-getServiceJobByServiceJobId:
|
|
666
|
+
- 20
|
|
667
|
+
- 40
|
|
668
|
+
ServiceApi-cancelServiceJobByServiceJobId:
|
|
669
|
+
- 5
|
|
670
|
+
- 20
|
|
671
|
+
ServiceApi-completeServiceJobByServiceJobId:
|
|
672
|
+
- 5
|
|
673
|
+
- 20
|
|
674
|
+
ServiceApi-getServiceJobs:
|
|
675
|
+
- 10
|
|
676
|
+
- 40
|
|
677
|
+
ServiceApi-addAppointmentForServiceJobByServiceJobId:
|
|
678
|
+
- 5
|
|
679
|
+
- 20
|
|
680
|
+
ServiceApi-rescheduleAppointmentForServiceJobByServiceJobId:
|
|
681
|
+
- 5
|
|
682
|
+
- 20
|
|
683
|
+
ServiceApi-assignAppointmentResources:
|
|
684
|
+
- 5
|
|
685
|
+
- 20
|
|
686
|
+
ServiceApi-setAppointmentFulfillmentData:
|
|
687
|
+
- 5
|
|
688
|
+
- 20
|
|
689
|
+
ServiceApi-getRangeSlotCapacity:
|
|
690
|
+
- 5
|
|
691
|
+
- 20
|
|
692
|
+
ServiceApi-getFixedSlotCapacity:
|
|
693
|
+
- 5
|
|
694
|
+
- 20
|
|
695
|
+
ServiceApi-updateSchedule:
|
|
696
|
+
- 5
|
|
697
|
+
- 20
|
|
698
|
+
ServiceApi-createReservation:
|
|
699
|
+
- 5
|
|
700
|
+
- 20
|
|
701
|
+
ServiceApi-updateReservation:
|
|
702
|
+
- 5
|
|
703
|
+
- 20
|
|
704
|
+
ServiceApi-cancelReservation:
|
|
705
|
+
- 5
|
|
706
|
+
- 20
|
|
707
|
+
ServiceApi-getAppointmmentSlotsByJobId:
|
|
708
|
+
- 5
|
|
709
|
+
- 20
|
|
710
|
+
ServiceApi-getAppointmentSlots:
|
|
711
|
+
- 5
|
|
712
|
+
- 20
|
|
713
|
+
ServiceApi-createServiceDocumentUploadDestination:
|
|
714
|
+
- 5
|
|
715
|
+
- 20
|
|
716
|
+
# Shipment Invoicing API
|
|
717
|
+
ShipmentInvoiceApi-getShipmentDetails:
|
|
718
|
+
- 1.133
|
|
719
|
+
- 25
|
|
720
|
+
ShipmentInvoiceApi-submitInvoice:
|
|
721
|
+
- 1.133
|
|
722
|
+
- 25
|
|
723
|
+
ShipmentInvoiceApi-getInvoiceStatus:
|
|
724
|
+
- 1.133
|
|
725
|
+
- 25
|
|
726
|
+
# Shipping V2 API
|
|
727
|
+
ShippingApi-createShipment:
|
|
728
|
+
- 5
|
|
729
|
+
- 15
|
|
730
|
+
ShippingApi-getShipment:
|
|
731
|
+
- 5
|
|
732
|
+
- 15
|
|
733
|
+
ShippingApi-cancelShipment:
|
|
734
|
+
- 5
|
|
735
|
+
- 15
|
|
736
|
+
ShippingApi-purchaseLabels:
|
|
737
|
+
- 5
|
|
738
|
+
- 15
|
|
739
|
+
ShippingApi-retrieveShippingLabel:
|
|
740
|
+
- 5
|
|
741
|
+
- 15
|
|
742
|
+
ShippingApi-purchaseShipment:
|
|
743
|
+
- 5
|
|
744
|
+
- 15
|
|
745
|
+
ShippingApi-getRates:
|
|
746
|
+
- 5
|
|
747
|
+
- 15
|
|
748
|
+
ShippingApi-getAccount:
|
|
749
|
+
- 5
|
|
750
|
+
- 15
|
|
751
|
+
ShippingApi-getTrackingInformation:
|
|
752
|
+
- 1
|
|
753
|
+
- 1
|
|
754
|
+
# Solicitations API
|
|
755
|
+
SolicitationsApi-getSolicitationActionsForOrder:
|
|
756
|
+
- 1
|
|
757
|
+
- 5
|
|
758
|
+
SolicitationsApi-createProductReviewAndSellerFeedbackSolicitation:
|
|
759
|
+
- 1
|
|
760
|
+
- 5
|
|
761
|
+
# Supply Sources API
|
|
762
|
+
SupplySourcesApi-getSupplySources:
|
|
763
|
+
- 10
|
|
764
|
+
- 10
|
|
765
|
+
SupplySourcesApi-createSupplySource:
|
|
766
|
+
- 2
|
|
767
|
+
- 2
|
|
768
|
+
SupplySourcesApi-getSupplySource:
|
|
769
|
+
- 40
|
|
770
|
+
- 40
|
|
771
|
+
SupplySourcesApi-updateSupplySource:
|
|
772
|
+
- 1
|
|
773
|
+
- 1
|
|
774
|
+
SupplySourcesApi-archiveSupplySource:
|
|
775
|
+
- 20
|
|
776
|
+
- 20
|
|
777
|
+
SupplySourcesApi-updateSupplySourceStatus:
|
|
778
|
+
- 20
|
|
779
|
+
- 20
|
|
780
|
+
# Tokens API
|
|
781
|
+
TokensApi-createRestrictedDataToken:
|
|
782
|
+
- 1
|
|
783
|
+
- 10
|
|
784
|
+
# Uploads API
|
|
785
|
+
UploadsApi-createUploadDestinationForResource:
|
|
786
|
+
- 5
|
|
787
|
+
- 5
|
|
788
|
+
# Vehicles API
|
|
789
|
+
AutomotiveApi-getVehicles:
|
|
790
|
+
- 20
|
|
791
|
+
- 5
|
|
792
|
+
VehiclesApi-getVehicles:
|
|
793
|
+
- 20
|
|
794
|
+
- 5
|
|
795
|
+
# Vendor DF APIs
|
|
796
|
+
UpdateInventoryApi-submitInventoryUpdate:
|
|
797
|
+
- 10
|
|
798
|
+
- 10
|
|
799
|
+
VendorOrdersApi-getOrders:
|
|
800
|
+
- 10
|
|
801
|
+
- 10
|
|
802
|
+
VendorOrdersApi-getOrder:
|
|
803
|
+
- 10
|
|
804
|
+
- 10
|
|
805
|
+
VendorOrdersApi-submitAcknowledgement:
|
|
806
|
+
- 10
|
|
807
|
+
- 10
|
|
808
|
+
VendorInvoiceApi-submitInvoice:
|
|
809
|
+
- 10
|
|
810
|
+
- 10
|
|
811
|
+
VendorShippingLabelsApi-getShippingLabels:
|
|
812
|
+
- 10
|
|
813
|
+
- 10
|
|
814
|
+
VendorShippingLabelsApi-submitShippingLabelRequest:
|
|
815
|
+
- 10
|
|
816
|
+
- 10
|
|
817
|
+
VendorShippingLabelsApi-getShippingLabel:
|
|
818
|
+
- 10
|
|
819
|
+
- 10
|
|
820
|
+
VendorShippingLabelsApi-createShippingLabels:
|
|
821
|
+
- 10
|
|
822
|
+
- 10
|
|
823
|
+
VendorShippingApi-submitShipmentConfirmations:
|
|
824
|
+
- 10
|
|
825
|
+
- 10
|
|
826
|
+
VendorShippingApi-submitShipmentStatusUpdates:
|
|
827
|
+
- 10
|
|
828
|
+
- 10
|
|
829
|
+
CustomerInvoicesApi-getCustomerInvoices:
|
|
830
|
+
- 10
|
|
831
|
+
- 10
|
|
832
|
+
CustomerInvoicesApi-getCustomerInvoice:
|
|
833
|
+
- 10
|
|
834
|
+
- 10
|
|
835
|
+
VendorShippingApi-getPackingSlips:
|
|
836
|
+
- 10
|
|
837
|
+
- 10
|
|
838
|
+
VendorShippingApi-getPackingSlip:
|
|
839
|
+
- 10
|
|
840
|
+
- 10
|
|
841
|
+
CreateContainerLabelApi-createContainerLabel:
|
|
842
|
+
- 10
|
|
843
|
+
- 10
|
|
844
|
+
VendorTransactionsApi-getTransactionStatus:
|
|
845
|
+
- 10
|
|
846
|
+
- 10
|
|
847
|
+
# Vendor APIs
|
|
848
|
+
VendorPaymentsApi-submitInvoices:
|
|
849
|
+
- 10
|
|
850
|
+
- 10
|
|
851
|
+
VendorOrdersApi-getPurchaseOrders:
|
|
852
|
+
- 10
|
|
853
|
+
- 10
|
|
854
|
+
VendorOrdersApi-getPurchaseOrder:
|
|
855
|
+
- 10
|
|
856
|
+
- 10
|
|
857
|
+
VendorOrdersApi-getPurchaseOrdersStatus:
|
|
858
|
+
- 10
|
|
859
|
+
- 10
|
|
860
|
+
VendorShippingApi-SubmitShipmentConfirmations:
|
|
861
|
+
- 10
|
|
862
|
+
- 10
|
|
863
|
+
VendorShippingApi-SubmitShipments:
|
|
864
|
+
- 10
|
|
865
|
+
- 10
|
|
866
|
+
VendorShippingApi-GetShipmentDetails:
|
|
867
|
+
- 10
|
|
868
|
+
- 10
|
|
869
|
+
VendorShippingApi-GetShipmentLabels:
|
|
870
|
+
- 10
|
|
871
|
+
- 10
|
|
872
|
+
VendorTransactionApi-getTransaction:
|
|
873
|
+
- 10
|
|
874
|
+
- 10
|