python-amazon-sp-api 2.0.15__py3-none-any.whl → 2.1.3__py3-none-any.whl
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.
- {python_amazon_sp_api-2.0.15.dist-info → python_amazon_sp_api-2.1.3.dist-info}/METADATA +7 -7
- python_amazon_sp_api-2.1.3.dist-info/RECORD +350 -0
- sp_api/__version__.py +1 -1
- sp_api/api/__init__.py +160 -4
- sp_api/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu.py +85 -110
- sp_api/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu_2024_05_09.py +456 -0
- sp_api/api/aplus_content/aplus_content.py +176 -125
- sp_api/api/application_integrations/application_integrations.py +59 -68
- sp_api/api/application_management/application_management.py +20 -13
- sp_api/api/authorization/authorization.py +8 -26
- sp_api/api/catalog/catalog.py +27 -61
- sp_api/api/catalog_items/catalog_items.py +108 -78
- sp_api/api/catalog_items/catalog_items_2020_12_01.py +86 -0
- sp_api/api/catalog_items/catalog_items_2022_04_01.py +89 -0
- sp_api/api/customer_feedback/customer_feedback.py +100 -0
- sp_api/api/data_kiosk/data_kiosk.py +80 -75
- sp_api/api/delivery_by_amazon/__init__.py +0 -0
- sp_api/api/delivery_by_amazon/delivery_by_amazon.py +92 -0
- sp_api/api/delivery_by_amazon/delivery_by_amazon_2022_07_01.py +81 -0
- sp_api/api/easy_ship/easy_ship.py +121 -111
- sp_api/api/external_fulfillment/external_fulfillment.py +211 -434
- sp_api/api/external_fulfillment/inventory.py +120 -0
- sp_api/api/external_fulfillment/inventory_2021_01_06.py +71 -0
- sp_api/api/external_fulfillment/inventory_2024_09_11.py +96 -0
- sp_api/api/external_fulfillment/returns.py +120 -0
- sp_api/api/external_fulfillment/returns_2021_08_19.py +88 -0
- sp_api/api/external_fulfillment/returns_2024_09_11.py +141 -0
- sp_api/api/external_fulfillment/shipping.py +120 -0
- sp_api/api/external_fulfillment/shipping_2021_01_06.py +256 -0
- sp_api/api/external_fulfillment/shipping_2024_09_11.py +233 -0
- sp_api/api/fba_inbound_eligibility/fba_inbound_eligibility.py +30 -24
- sp_api/api/fba_small_and_light/fba_small_and_light.py +60 -99
- sp_api/api/feeds/feeds.py +75 -245
- sp_api/api/feeds/feeds_2021_06_30.py +320 -0
- sp_api/api/finances/finances.py +123 -90
- sp_api/api/finances/finances_2024_06_01.py +71 -0
- sp_api/api/finances/finances_2024_06_19.py +114 -0
- sp_api/api/finances/finances_v0.py +116 -0
- sp_api/api/fulfillment_inbound/fulfillment_inbound.py +107 -1784
- sp_api/api/fulfillment_inbound/fulfillment_inbound_2024_03_20.py +1722 -0
- sp_api/api/fulfillment_inbound/fulfillment_inbound_v0.py +1384 -0
- sp_api/api/fulfillment_outbound/fulfillment_outbound.py +256 -480
- sp_api/api/inventories/inventories.py +79 -42
- sp_api/api/invoices/__init__.py +0 -0
- sp_api/api/invoices/invoices.py +92 -0
- sp_api/api/invoices/invoices_2024_06_19.py +344 -0
- sp_api/api/listings_items/listings_items.py +110 -163
- sp_api/api/listings_items/listings_items_2020_09_01.py +189 -0
- sp_api/api/listings_items/listings_items_2021_08_01.py +233 -0
- sp_api/api/listings_restrictions/listings_restrictions.py +23 -10
- sp_api/api/merchant_fulfillment/merchant_fulfillment.py +107 -222
- sp_api/api/messaging/messaging.py +184 -198
- sp_api/api/notifications/notifications.py +144 -106
- sp_api/api/orders/orders.py +9 -46
- sp_api/api/orders/orders_2026_01_01.py +19 -65
- sp_api/api/orders/orders_v0.py +152 -184
- sp_api/api/product_fees/product_fees.py +101 -75
- sp_api/api/product_type_definitions/product_type_definitions.py +47 -36
- sp_api/api/products/products.py +94 -386
- sp_api/api/products/products_2022_05_01.py +96 -0
- sp_api/api/products/products_v0.py +389 -0
- sp_api/api/replenishment/replenishment.py +58 -69
- sp_api/api/reports/reports.py +124 -157
- sp_api/api/sales/sales.py +22 -39
- sp_api/api/seller_wallet/__init__.py +0 -0
- sp_api/api/seller_wallet/seller_wallet.py +92 -0
- sp_api/api/seller_wallet/seller_wallet_2024_03_01.py +300 -0
- sp_api/api/sellers/sellers.py +15 -35
- sp_api/api/services/services.py +479 -82
- sp_api/api/shipment_invoicing/__init__.py +0 -0
- sp_api/api/shipment_invoicing/shipment_invoicing.py +92 -0
- sp_api/api/shipment_invoicing/shipment_invoicing_v0.py +101 -0
- sp_api/api/shipping/shipping.py +94 -440
- sp_api/api/shipping/shippingV2.py +183 -474
- sp_api/api/shipping/shipping_v1.py +330 -0
- sp_api/api/shipping/shipping_v2.py +723 -0
- sp_api/api/solicitations/solicitations.py +28 -18
- sp_api/api/supply_sources/supply_sources.py +67 -57
- sp_api/api/tokens/tokens.py +14 -35
- sp_api/api/vehicles/__init__.py +0 -0
- sp_api/api/vehicles/vehicles.py +92 -0
- sp_api/api/vehicles/vehicles_2024_11_01.py +33 -0
- sp_api/api/vendor_direct_fulfillment_inventory/vendor_direct_fulfillment_inventory.py +16 -29
- sp_api/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders.py +116 -189
- sp_api/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders_2021_12_28.py +114 -0
- sp_api/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders_v1.py +114 -0
- sp_api/api/vendor_direct_fulfillment_payments/vendor_direct_fulfillment_payments.py +15 -225
- sp_api/api/vendor_direct_fulfillment_sandbox_test_data/__init__.py +0 -0
- sp_api/api/vendor_direct_fulfillment_sandbox_test_data/vendor_direct_fulfillment_sandbox_test_data.py +92 -0
- sp_api/api/vendor_direct_fulfillment_sandbox_test_data/vendor_direct_fulfillment_sandbox_test_data_2021_10_28.py +50 -0
- sp_api/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping.py +122 -624
- sp_api/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping_2021_12_28.py +390 -0
- sp_api/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping_v1.py +320 -0
- sp_api/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions.py +113 -29
- sp_api/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions_2021_12_28.py +47 -0
- sp_api/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions_v1.py +47 -0
- sp_api/api/vendor_invoices/vendor_invoices.py +15 -264
- sp_api/api/vendor_orders/vendor_orders.py +83 -131
- sp_api/api/vendor_shipments/vendor_shipments.py +149 -68
- sp_api/api/vendor_transaction_status/vendor_transaction_status.py +16 -11
- sp_api/asyncio/api/__init__.py +159 -4
- sp_api/asyncio/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu.py +84 -110
- sp_api/asyncio/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu_2024_05_09.py +457 -0
- sp_api/asyncio/api/aplus_content/aplus_content.py +176 -125
- sp_api/asyncio/api/application_integrations/application_integrations.py +59 -68
- sp_api/asyncio/api/application_management/application_management.py +20 -13
- sp_api/asyncio/api/authorization/authorization.py +8 -26
- sp_api/asyncio/api/catalog/catalog.py +27 -61
- sp_api/asyncio/api/catalog_items/catalog_items.py +94 -71
- sp_api/asyncio/api/catalog_items/catalog_items_2020_12_01.py +87 -0
- sp_api/asyncio/api/catalog_items/catalog_items_2022_04_01.py +90 -0
- sp_api/asyncio/api/customer_feedback/customer_feedback.py +100 -0
- sp_api/asyncio/api/data_kiosk/data_kiosk.py +80 -75
- sp_api/asyncio/api/delivery_by_amazon/__init__.py +0 -0
- sp_api/asyncio/api/delivery_by_amazon/delivery_by_amazon.py +92 -0
- sp_api/asyncio/api/delivery_by_amazon/delivery_by_amazon_2022_07_01.py +82 -0
- sp_api/asyncio/api/easy_ship/easy_ship.py +121 -111
- sp_api/asyncio/api/external_fulfillment/external_fulfillment.py +212 -435
- sp_api/asyncio/api/external_fulfillment/inventory.py +126 -0
- sp_api/asyncio/api/external_fulfillment/inventory_2021_01_06.py +73 -0
- sp_api/asyncio/api/external_fulfillment/inventory_2024_09_11.py +98 -0
- sp_api/asyncio/api/external_fulfillment/returns.py +124 -0
- sp_api/asyncio/api/external_fulfillment/returns_2021_08_19.py +90 -0
- sp_api/asyncio/api/external_fulfillment/returns_2024_09_11.py +143 -0
- sp_api/asyncio/api/external_fulfillment/shipping.py +124 -0
- sp_api/asyncio/api/external_fulfillment/shipping_2021_01_06.py +258 -0
- sp_api/asyncio/api/external_fulfillment/shipping_2024_09_11.py +235 -0
- sp_api/asyncio/api/fba_inbound_eligibility/fba_inbound_eligibility.py +31 -25
- sp_api/asyncio/api/fba_small_and_light/fba_small_and_light.py +61 -100
- sp_api/asyncio/api/feeds/feeds.py +75 -243
- sp_api/asyncio/api/feeds/feeds_2021_06_30.py +318 -0
- sp_api/asyncio/api/finances/finances.py +123 -91
- sp_api/asyncio/api/finances/finances_2024_06_01.py +72 -0
- sp_api/asyncio/api/finances/finances_2024_06_19.py +115 -0
- sp_api/asyncio/api/finances/finances_v0.py +117 -0
- sp_api/asyncio/api/fulfillment_inbound/fulfillment_inbound.py +107 -1785
- sp_api/asyncio/api/fulfillment_inbound/fulfillment_inbound_2024_03_20.py +1723 -0
- sp_api/asyncio/api/fulfillment_inbound/fulfillment_inbound_v0.py +1385 -0
- sp_api/asyncio/api/fulfillment_outbound/fulfillment_outbound.py +257 -481
- sp_api/asyncio/api/inventories/inventories.py +79 -42
- sp_api/asyncio/api/invoices/__init__.py +0 -0
- sp_api/asyncio/api/invoices/invoices.py +92 -0
- sp_api/asyncio/api/invoices/invoices_2024_06_19.py +345 -0
- sp_api/asyncio/api/listings_items/listings_items.py +109 -163
- sp_api/asyncio/api/listings_items/listings_items_2020_09_01.py +190 -0
- sp_api/asyncio/api/listings_items/listings_items_2021_08_01.py +233 -0
- sp_api/asyncio/api/listings_restrictions/listings_restrictions.py +23 -10
- sp_api/asyncio/api/merchant_fulfillment/merchant_fulfillment.py +110 -222
- sp_api/asyncio/api/messaging/messaging.py +185 -199
- sp_api/asyncio/api/notifications/notifications.py +145 -107
- sp_api/asyncio/api/orders/orders.py +9 -46
- sp_api/asyncio/api/orders/orders_2026_01_01.py +19 -65
- sp_api/asyncio/api/orders/orders_v0.py +152 -184
- sp_api/asyncio/api/product_fees/product_fees.py +101 -75
- sp_api/asyncio/api/product_type_definitions/product_type_definitions.py +47 -36
- sp_api/asyncio/api/products/products.py +94 -387
- sp_api/asyncio/api/products/products_2022_05_01.py +109 -0
- sp_api/asyncio/api/products/products_v0.py +388 -0
- sp_api/asyncio/api/replenishment/replenishment.py +59 -70
- sp_api/asyncio/api/reports/reports.py +124 -157
- sp_api/asyncio/api/sales/sales.py +22 -39
- sp_api/asyncio/api/seller_wallet/__init__.py +0 -0
- sp_api/asyncio/api/seller_wallet/seller_wallet.py +92 -0
- sp_api/asyncio/api/seller_wallet/seller_wallet_2024_03_01.py +301 -0
- sp_api/asyncio/api/sellers/sellers.py +16 -36
- sp_api/asyncio/api/services/services.py +479 -82
- sp_api/asyncio/api/shipment_invoicing/__init__.py +0 -0
- sp_api/asyncio/api/shipment_invoicing/shipment_invoicing.py +92 -0
- sp_api/asyncio/api/shipment_invoicing/shipment_invoicing_v0.py +102 -0
- sp_api/asyncio/api/shipping/shipping.py +94 -441
- sp_api/asyncio/api/shipping/shippingV2.py +181 -472
- sp_api/asyncio/api/shipping/shipping_v1.py +331 -0
- sp_api/asyncio/api/shipping/shipping_v2.py +717 -0
- sp_api/asyncio/api/solicitations/solicitations.py +29 -19
- sp_api/asyncio/api/supply_sources/supply_sources.py +67 -57
- sp_api/asyncio/api/tokens/tokens.py +14 -35
- sp_api/asyncio/api/vehicles/__init__.py +0 -0
- sp_api/asyncio/api/vehicles/vehicles.py +92 -0
- sp_api/asyncio/api/vehicles/vehicles_2024_11_01.py +34 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_inventory/vendor_direct_fulfillment_inventory.py +16 -29
- sp_api/asyncio/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders.py +120 -192
- sp_api/asyncio/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders_2021_12_28.py +116 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders_v1.py +115 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_payments/vendor_direct_fulfillment_payments.py +15 -225
- sp_api/asyncio/api/vendor_direct_fulfillment_sandbox_test_data/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_sandbox_test_data/vendor_direct_fulfillment_sandbox_test_data.py +92 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_sandbox_test_data/vendor_direct_fulfillment_sandbox_test_data_2021_10_28.py +51 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping.py +120 -623
- sp_api/asyncio/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping_2021_12_28.py +392 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping_v1.py +321 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions.py +112 -29
- sp_api/asyncio/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions_2021_12_28.py +49 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions_v1.py +48 -0
- sp_api/asyncio/api/vendor_invoices/vendor_invoices.py +16 -265
- sp_api/asyncio/api/vendor_orders/vendor_orders.py +84 -132
- sp_api/asyncio/api/vendor_shipments/vendor_shipments.py +150 -69
- sp_api/asyncio/api/vendor_transaction_status/vendor_transaction_status.py +17 -12
- sp_api/asyncio/base/client.py +2 -2
- sp_api/asyncio/util/load_date_bound.py +1 -1
- sp_api/base/__init__.py +10 -0
- sp_api/base/_core.py +2 -2
- sp_api/base/client.py +3 -3
- sp_api/base/helpers.py +12 -1
- sp_api/base/marketplaces.py +6 -3
- sp_api/util/__init__.py +2 -0
- sp_api/util/load_date_bound.py +1 -1
- sp_api/util/versioned_client.py +45 -0
- python_amazon_sp_api-2.0.15.dist-info/RECORD +0 -255
- sp_api/asyncio/api/models/__init__.py +0 -4
- sp_api/asyncio/api/overrides/__init__.py +0 -1
- {python_amazon_sp_api-2.0.15.data → python_amazon_sp_api-2.1.3.data}/scripts/make_endpoint +0 -0
- {python_amazon_sp_api-2.0.15.dist-info → python_amazon_sp_api-2.1.3.dist-info}/WHEEL +0 -0
- {python_amazon_sp_api-2.0.15.dist-info → python_amazon_sp_api-2.1.3.dist-info}/licenses/LICENSE +0 -0
- {python_amazon_sp_api-2.0.15.dist-info → python_amazon_sp_api-2.1.3.dist-info}/top_level.txt +0 -0
|
@@ -10,47 +10,19 @@ class OrdersV0(AsyncBaseClient):
|
|
|
10
10
|
async def get_orders(self, **kwargs) -> ApiResponse:
|
|
11
11
|
"""
|
|
12
12
|
get_orders(self, **kwargs) -> ApiResponse
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
**Usage Plan:**
|
|
18
|
-
|
|
19
|
-
====================================== ==============
|
|
20
|
-
Rate (requests per second) Burst
|
|
21
|
-
====================================== ==============
|
|
22
|
-
1 1
|
|
23
|
-
====================================== ==============
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
27
|
-
|
|
13
|
+
|
|
14
|
+
Returns orders that are created or updated during the specified time period. If you want to return specific types of orders, you can apply filters to your request. `NextToken` doesn't affect any filters that you include in your request; it only impacts the pagination for the filtered orders response.
|
|
15
|
+
|
|
28
16
|
Examples:
|
|
29
17
|
literal blocks::
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
18
|
+
|
|
19
|
+
await OrdersV0().get_orders()
|
|
20
|
+
|
|
33
21
|
Args:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
key LastUpdatedAfter: date
|
|
37
|
-
key LastUpdatedBefore: date
|
|
38
|
-
key OrderStatuses: [str]
|
|
39
|
-
key MarketplaceIds: [str]
|
|
40
|
-
key FulfillmentChannels: [str]
|
|
41
|
-
key PaymentMethods: [str]
|
|
42
|
-
key BuyerEmail: str
|
|
43
|
-
key SellerOrderId: str
|
|
44
|
-
key MaxResultsPerPage: int
|
|
45
|
-
key EasyShipShipmentStatuses: [str]
|
|
46
|
-
key NextToken: str
|
|
47
|
-
key AmazonOrderIds: [str]
|
|
48
|
-
key RestrictedResources: [str]
|
|
49
|
-
|
|
22
|
+
**kwargs:
|
|
23
|
+
|
|
50
24
|
Returns:
|
|
51
|
-
ApiResponse
|
|
52
|
-
|
|
53
|
-
|
|
25
|
+
ApiResponse
|
|
54
26
|
"""
|
|
55
27
|
normalize_csv_param(kwargs, "OrderStatuses")
|
|
56
28
|
normalize_csv_param(kwargs, "MarketplaceIds")
|
|
@@ -65,34 +37,21 @@ class OrdersV0(AsyncBaseClient):
|
|
|
65
37
|
@sp_endpoint("/orders/v0/orders/{}")
|
|
66
38
|
async def get_order(self, order_id: str, **kwargs) -> ApiResponse:
|
|
67
39
|
"""
|
|
68
|
-
get_order(self, order_id
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
====================================== ==============
|
|
74
|
-
Rate (requests per second) Burst
|
|
75
|
-
====================================== ==============
|
|
76
|
-
1 1
|
|
77
|
-
====================================== ==============
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
81
|
-
|
|
40
|
+
get_order(self, order_id, **kwargs) -> ApiResponse
|
|
41
|
+
|
|
42
|
+
Returns the order that you specify.
|
|
43
|
+
|
|
82
44
|
Examples:
|
|
83
45
|
literal blocks::
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
46
|
+
|
|
47
|
+
await OrdersV0().get_order("value")
|
|
48
|
+
|
|
87
49
|
Args:
|
|
88
|
-
order_id:
|
|
89
|
-
key RestrictedResources: [str]
|
|
50
|
+
order_id: | required
|
|
90
51
|
**kwargs:
|
|
91
|
-
|
|
52
|
+
|
|
92
53
|
Returns:
|
|
93
|
-
ApiResponse
|
|
94
|
-
|
|
95
|
-
|
|
54
|
+
ApiResponse
|
|
96
55
|
"""
|
|
97
56
|
if "RestrictedResources" in kwargs:
|
|
98
57
|
kwargs.update(
|
|
@@ -108,44 +67,22 @@ class OrdersV0(AsyncBaseClient):
|
|
|
108
67
|
@sp_endpoint("/orders/v0/orders/{}/orderItems")
|
|
109
68
|
async def get_order_items(self, order_id: str, **kwargs) -> ApiResponse:
|
|
110
69
|
"""
|
|
111
|
-
get_order_items(self, order_id
|
|
112
|
-
|
|
113
|
-
Returns detailed order item information for the order
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
Note: When an order is in the Pending state (the order has been placed but payment has not been authorized),
|
|
117
|
-
the getOrderItems operation does not return information about pricing, taxes, shipping charges, gift status or
|
|
118
|
-
promotions for the order items in the order.
|
|
119
|
-
After an order leaves the Pending state (this occurs when payment has been authorized) and enters the Unshipped,
|
|
120
|
-
Partially Shipped, or Shipped state, the getOrderItems operation returns information about pricing, taxes,
|
|
121
|
-
shipping charges, gift status and promotions for the order items in the order.
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
**Usage Plan:**
|
|
125
|
-
|
|
126
|
-
====================================== ==============
|
|
127
|
-
Rate (requests per second) Burst
|
|
128
|
-
====================================== ==============
|
|
129
|
-
1 1
|
|
130
|
-
====================================== ==============
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
135
|
-
|
|
70
|
+
get_order_items(self, order_id, **kwargs) -> ApiResponse
|
|
71
|
+
|
|
72
|
+
Returns detailed order item information for the order that you specify. If `NextToken` is provided, it's used to retrieve the next page of order items.
|
|
73
|
+
__Note__: When an order is in the Pending state (the order has been placed but payment has not been authorized), the getOrderItems operation does not return information about pricing, taxes, shipping charges, gift status or promotions for the order items in the order. After an order leaves the Pending state (this occurs when payment has been authorized) and enters the Unshipped, Partially Shipped, or Shipped state, the getOrderItems operation returns information about pricing, taxes, shipping charges, gift status and promotions for the order items in the order.
|
|
74
|
+
|
|
136
75
|
Examples:
|
|
137
76
|
literal blocks::
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
77
|
+
|
|
78
|
+
await OrdersV0().get_order_items("value")
|
|
79
|
+
|
|
141
80
|
Args:
|
|
142
|
-
order_id:
|
|
143
|
-
key RestrictedResources: [str]
|
|
81
|
+
order_id: | required
|
|
144
82
|
**kwargs:
|
|
145
|
-
|
|
83
|
+
|
|
146
84
|
Returns:
|
|
147
|
-
ApiResponse
|
|
148
|
-
|
|
85
|
+
ApiResponse
|
|
149
86
|
"""
|
|
150
87
|
if "RestrictedResources" in kwargs:
|
|
151
88
|
kwargs.update(
|
|
@@ -160,26 +97,18 @@ class OrdersV0(AsyncBaseClient):
|
|
|
160
97
|
async def get_order_address(self, order_id, **kwargs) -> ApiResponse:
|
|
161
98
|
"""
|
|
162
99
|
get_order_address(self, order_id, **kwargs) -> ApiResponse
|
|
163
|
-
|
|
164
|
-
Returns the shipping address for the order
|
|
165
|
-
|
|
166
|
-
:note: To get useful information from this method, you need to have access to PII.
|
|
167
|
-
|
|
168
|
-
**Usage Plan:**
|
|
169
|
-
|
|
170
|
-
====================================== ==============
|
|
171
|
-
Rate (requests per second) Burst
|
|
172
|
-
====================================== ==============
|
|
173
|
-
1 1
|
|
174
|
-
====================================== ==============
|
|
175
|
-
|
|
100
|
+
|
|
101
|
+
Returns the shipping address for the order that you specify.
|
|
102
|
+
|
|
176
103
|
Examples:
|
|
177
|
-
|
|
178
|
-
|
|
104
|
+
literal blocks::
|
|
105
|
+
|
|
106
|
+
await OrdersV0().get_order_address("value")
|
|
107
|
+
|
|
179
108
|
Args:
|
|
180
|
-
order_id:
|
|
109
|
+
order_id: | required
|
|
181
110
|
**kwargs:
|
|
182
|
-
|
|
111
|
+
|
|
183
112
|
Returns:
|
|
184
113
|
ApiResponse
|
|
185
114
|
"""
|
|
@@ -190,33 +119,21 @@ class OrdersV0(AsyncBaseClient):
|
|
|
190
119
|
@sp_endpoint("/orders/v0/orders/{}/buyerInfo")
|
|
191
120
|
async def get_order_buyer_info(self, order_id: str, **kwargs) -> ApiResponse:
|
|
192
121
|
"""
|
|
193
|
-
get_order_buyer_info(self, order_id
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
**Usage Plan:**
|
|
200
|
-
|
|
201
|
-
====================================== ==============
|
|
202
|
-
Rate (requests per second) Burst
|
|
203
|
-
====================================== ==============
|
|
204
|
-
1 1
|
|
205
|
-
====================================== ==============
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
209
|
-
|
|
122
|
+
get_order_buyer_info(self, order_id, **kwargs) -> ApiResponse
|
|
123
|
+
|
|
124
|
+
Returns buyer information for the order that you specify.
|
|
125
|
+
|
|
210
126
|
Examples:
|
|
211
|
-
|
|
212
|
-
|
|
127
|
+
literal blocks::
|
|
128
|
+
|
|
129
|
+
await OrdersV0().get_order_buyer_info("value")
|
|
130
|
+
|
|
213
131
|
Args:
|
|
214
|
-
order_id:
|
|
132
|
+
order_id: | required
|
|
215
133
|
**kwargs:
|
|
216
|
-
|
|
134
|
+
|
|
217
135
|
Returns:
|
|
218
|
-
|
|
219
|
-
|
|
136
|
+
ApiResponse
|
|
220
137
|
"""
|
|
221
138
|
return await self._request(
|
|
222
139
|
fill_query_params(kwargs.pop("path"), order_id), params={**kwargs}
|
|
@@ -225,29 +142,19 @@ class OrdersV0(AsyncBaseClient):
|
|
|
225
142
|
@sp_endpoint("/orders/v0/orders/{}/orderItems/buyerInfo")
|
|
226
143
|
async def get_order_items_buyer_info(self, order_id: str, **kwargs) -> ApiResponse:
|
|
227
144
|
"""
|
|
228
|
-
get_order_items_buyer_info(self, order_id
|
|
229
|
-
|
|
230
|
-
Returns buyer information
|
|
231
|
-
|
|
232
|
-
**Usage Plan:**
|
|
233
|
-
|
|
234
|
-
====================================== ==============
|
|
235
|
-
Rate (requests per second) Burst
|
|
236
|
-
====================================== ==============
|
|
237
|
-
1 1
|
|
238
|
-
====================================== ==============
|
|
239
|
-
|
|
240
|
-
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
241
|
-
|
|
145
|
+
get_order_items_buyer_info(self, order_id, **kwargs) -> ApiResponse
|
|
146
|
+
|
|
147
|
+
Returns buyer information for the order items in the order that you specify.
|
|
148
|
+
|
|
242
149
|
Examples:
|
|
243
150
|
literal blocks::
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
151
|
+
|
|
152
|
+
await OrdersV0().get_order_items_buyer_info("value")
|
|
153
|
+
|
|
247
154
|
Args:
|
|
248
|
-
order_id:
|
|
249
|
-
|
|
250
|
-
|
|
155
|
+
order_id: | required
|
|
156
|
+
**kwargs:
|
|
157
|
+
|
|
251
158
|
Returns:
|
|
252
159
|
ApiResponse
|
|
253
160
|
"""
|
|
@@ -258,24 +165,29 @@ class OrdersV0(AsyncBaseClient):
|
|
|
258
165
|
@sp_endpoint("/orders/v0/orders/{}/shipment", method="POST")
|
|
259
166
|
async def update_shipment_status(self, order_id: str, **kwargs) -> ApiResponse:
|
|
260
167
|
"""
|
|
261
|
-
update_shipment_status(self, order_id
|
|
262
|
-
|
|
168
|
+
update_shipment_status(self, order_id, **kwargs) -> ApiResponse
|
|
169
|
+
|
|
170
|
+
Update the shipment status for an order that you specify.
|
|
171
|
+
|
|
263
172
|
**Usage Plan:**
|
|
173
|
+
|
|
264
174
|
====================================== ==============
|
|
265
175
|
Rate (requests per second) Burst
|
|
266
176
|
====================================== ==============
|
|
267
177
|
5 15
|
|
268
178
|
====================================== ==============
|
|
179
|
+
|
|
269
180
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
181
|
+
|
|
270
182
|
Examples:
|
|
271
183
|
literal blocks::
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
shipmentStatus='ReadyForPickup'
|
|
276
|
-
)
|
|
184
|
+
|
|
185
|
+
await OrdersV0().update_shipment_status("value")
|
|
186
|
+
|
|
277
187
|
Args:
|
|
278
|
-
|
|
188
|
+
orderId: object | required An Amazon-defined order identifier, in 3-7-7 format.
|
|
189
|
+
payload: UpdateShipmentStatusRequest | required The request body for the `updateShipmentStatus` operation.
|
|
190
|
+
|
|
279
191
|
Returns:
|
|
280
192
|
ApiResponse
|
|
281
193
|
"""
|
|
@@ -288,40 +200,29 @@ class OrdersV0(AsyncBaseClient):
|
|
|
288
200
|
@sp_endpoint("/orders/v0/orders/{}/shipmentConfirmation", method="POST")
|
|
289
201
|
async def confirm_shipment(self, order_id: str, **kwargs) -> ApiResponse:
|
|
290
202
|
"""
|
|
291
|
-
confirm_shipment(self, order_id
|
|
203
|
+
confirm_shipment(self, order_id, **kwargs) -> ApiResponse
|
|
204
|
+
|
|
292
205
|
Updates the shipment confirmation status for a specified order.
|
|
206
|
+
|
|
293
207
|
**Usage Plan:**
|
|
208
|
+
|
|
294
209
|
====================================== ==============
|
|
295
210
|
Rate (requests per second) Burst
|
|
296
211
|
====================================== ==============
|
|
297
212
|
2 10
|
|
298
213
|
====================================== ==============
|
|
214
|
+
|
|
299
215
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
216
|
+
|
|
300
217
|
Examples:
|
|
301
218
|
literal blocks::
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
packageDetail={
|
|
306
|
-
'packageReferenceId': '0001',
|
|
307
|
-
'carrierCode': 'DHL',
|
|
308
|
-
"shippingMethod": 'Paket',
|
|
309
|
-
'trackingNumber': '1234567890',
|
|
310
|
-
'shipDate': '2023-03-19T12:00:00Z',
|
|
311
|
-
'orderItems': [
|
|
312
|
-
{
|
|
313
|
-
'orderItemId': '123456789',
|
|
314
|
-
'quantity': 1
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
'orderItemId': '2345678901',
|
|
318
|
-
'quantity': 2
|
|
319
|
-
},
|
|
320
|
-
]
|
|
321
|
-
}
|
|
322
|
-
)
|
|
219
|
+
|
|
220
|
+
await OrdersV0().confirm_shipment("value")
|
|
221
|
+
|
|
323
222
|
Args:
|
|
324
|
-
|
|
223
|
+
orderId: object | required An Amazon-defined order identifier, in 3-7-7 format.
|
|
224
|
+
payload: ConfirmShipmentRequest | required Request body of `confirmShipment`.
|
|
225
|
+
|
|
325
226
|
Returns:
|
|
326
227
|
ApiResponse
|
|
327
228
|
"""
|
|
@@ -359,3 +260,70 @@ class OrdersV0(AsyncBaseClient):
|
|
|
359
260
|
self.restricted_data_token = None
|
|
360
261
|
return r
|
|
361
262
|
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
@sp_endpoint("/orders/v0/orders/{}/regulatedInfo", method="GET")
|
|
271
|
+
async def get_order_regulated_info(self, orderId, **kwargs) -> ApiResponse:
|
|
272
|
+
"""
|
|
273
|
+
get_order_regulated_info(self, orderId, **kwargs) -> ApiResponse
|
|
274
|
+
|
|
275
|
+
Returns regulated information for the order that you specify.
|
|
276
|
+
|
|
277
|
+
**Usage Plan:**
|
|
278
|
+
|
|
279
|
+
====================================== ==============
|
|
280
|
+
Rate (requests per second) Burst
|
|
281
|
+
====================================== ==============
|
|
282
|
+
0.5 30
|
|
283
|
+
====================================== ==============
|
|
284
|
+
|
|
285
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
286
|
+
|
|
287
|
+
Examples:
|
|
288
|
+
literal blocks::
|
|
289
|
+
|
|
290
|
+
await OrdersV0().get_order_regulated_info("value")
|
|
291
|
+
|
|
292
|
+
Args:
|
|
293
|
+
orderId: object | required The Amazon order identifier in 3-7-7 format.
|
|
294
|
+
|
|
295
|
+
Returns:
|
|
296
|
+
ApiResponse
|
|
297
|
+
"""
|
|
298
|
+
return await self._request(fill_query_params(kwargs.pop("path"), orderId), params=kwargs)
|
|
299
|
+
|
|
300
|
+
@sp_endpoint("/orders/v0/orders/{}/regulatedInfo", method="PATCH")
|
|
301
|
+
async def update_verification_status(self, orderId, **kwargs) -> ApiResponse:
|
|
302
|
+
"""
|
|
303
|
+
update_verification_status(self, orderId, **kwargs) -> ApiResponse
|
|
304
|
+
|
|
305
|
+
Updates (approves or rejects) the verification status of an order containing regulated products.
|
|
306
|
+
|
|
307
|
+
**Usage Plan:**
|
|
308
|
+
|
|
309
|
+
====================================== ==============
|
|
310
|
+
Rate (requests per second) Burst
|
|
311
|
+
====================================== ==============
|
|
312
|
+
0.5 30
|
|
313
|
+
====================================== ==============
|
|
314
|
+
|
|
315
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
316
|
+
|
|
317
|
+
Examples:
|
|
318
|
+
literal blocks::
|
|
319
|
+
|
|
320
|
+
await OrdersV0().update_verification_status("value")
|
|
321
|
+
|
|
322
|
+
Args:
|
|
323
|
+
orderId: object | required The Amazon order identifier in 3-7-7 format.
|
|
324
|
+
payload: UpdateVerificationStatusRequest | required The request body for the `updateVerificationStatus` operation.
|
|
325
|
+
|
|
326
|
+
Returns:
|
|
327
|
+
ApiResponse
|
|
328
|
+
"""
|
|
329
|
+
return await self._request(fill_query_params(kwargs.pop("path"), orderId), data=kwargs)
|
|
@@ -27,37 +27,39 @@ class ProductFees(AsyncBaseClient):
|
|
|
27
27
|
**kwargs
|
|
28
28
|
) -> ApiResponse:
|
|
29
29
|
"""
|
|
30
|
-
get_product_fees_estimate_for_sku(self, seller_sku, price
|
|
31
|
-
|
|
32
|
-
Returns fees for
|
|
33
|
-
|
|
30
|
+
get_product_fees_estimate_for_sku(self, seller_sku, price, shipping_price, currency, is_fba, points, marketplace_id, optional_fulfillment_program, force_safe_sku, **kwargs) -> ApiResponse
|
|
31
|
+
|
|
32
|
+
Returns the estimated fees for the item indicated by the specified seller SKU in the marketplace specified in the request body.
|
|
33
|
+
|
|
34
|
+
**Note:** The parameters associated with this operation may contain special characters that require URL encoding to call the API. To avoid errors with SKUs when encoding URLs, refer to [URL Encoding](https://developer-docs.amazon.com/sp-api/docs/url-encoding).
|
|
35
|
+
|
|
36
|
+
You can call `getMyFeesEstimateForSKU` for an item on behalf of a selling partner before the selling partner sets the item's price. The selling partner can then take any estimated fees into account. Each fees estimate request must include an original identifier. This identifier is included in the fees estimate so that you can correlate a fees estimate with the original request.
|
|
37
|
+
|
|
38
|
+
**Note:** This identifier value is used to identify an estimate. Actual costs may vary. Search "fees" in [Seller Central](https://sellercentral.amazon.com/) and consult the store-specific fee schedule for the most up-to-date information.
|
|
39
|
+
|
|
40
|
+
**Note:** When sellers use the `getMyFeesEstimateForSKU` operation with their `SellerSKU`, they get accurate fees based on real item measurements, but only after they've sent their items to Amazon.
|
|
41
|
+
|
|
42
|
+
**Usage Plan:**
|
|
43
|
+
|
|
44
|
+
====================================== ==============
|
|
45
|
+
Rate (requests per second) Burst
|
|
46
|
+
====================================== ==============
|
|
47
|
+
1 2
|
|
48
|
+
====================================== ==============
|
|
49
|
+
|
|
50
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
51
|
+
|
|
34
52
|
Examples:
|
|
35
53
|
literal blocks::
|
|
36
|
-
|
|
37
|
-
ProductFees().get_product_fees_estimate_for_sku("
|
|
38
|
-
|
|
39
|
-
"PointsNumber": 0,
|
|
40
|
-
"PointsMonetaryValue": {
|
|
41
|
-
"CurrencyCode": "USD",
|
|
42
|
-
"Amount": 0
|
|
43
|
-
}
|
|
44
|
-
})
|
|
45
|
-
|
|
54
|
+
|
|
55
|
+
await ProductFees().get_product_fees_estimate_for_sku("value", "value", "value", "value", "value", "value", "value", "value", "value")
|
|
56
|
+
|
|
46
57
|
Args:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
currency:
|
|
51
|
-
is_fba:
|
|
52
|
-
points:
|
|
53
|
-
marketplace_id: str | Defaults to self.marketplace_id
|
|
54
|
-
optional_fulfillment_program:
|
|
55
|
-
force_safe_sku: bool | Force user SKU quote
|
|
56
|
-
**kwargs:
|
|
57
|
-
|
|
58
|
+
body: GetMyFeesEstimateRequest | required The request body schema for the getMyFeesEstimates operation
|
|
59
|
+
SellerSKU: object | required Used to identify an item in the given marketplace. SellerSKU is qualified by the seller's SellerId, which is included with every operation that you submit.
|
|
60
|
+
|
|
58
61
|
Returns:
|
|
59
|
-
ApiResponse
|
|
60
|
-
|
|
62
|
+
ApiResponse
|
|
61
63
|
"""
|
|
62
64
|
|
|
63
65
|
if force_safe_sku:
|
|
@@ -94,36 +96,37 @@ class ProductFees(AsyncBaseClient):
|
|
|
94
96
|
**kwargs
|
|
95
97
|
) -> ApiResponse:
|
|
96
98
|
"""
|
|
97
|
-
get_product_fees_estimate_for_asin(self, asin, price
|
|
98
|
-
|
|
99
|
-
Returns fees for
|
|
100
|
-
|
|
99
|
+
get_product_fees_estimate_for_asin(self, asin, price, currency, shipping_price, is_fba, points, marketplace_id, optional_fulfillment_program, **kwargs) -> ApiResponse
|
|
100
|
+
|
|
101
|
+
Returns the estimated fees for the item indicated by the specified ASIN in the marketplace specified in the request body.
|
|
102
|
+
|
|
103
|
+
You can call `getMyFeesEstimateForASIN` for an item on behalf of a selling partner before the selling partner sets the item's price. The selling partner can then take estimated fees into account. Each fees request must include an original identifier. This identifier is included in the fees estimate so you can correlate a fees estimate with the original request.
|
|
104
|
+
|
|
105
|
+
**Note:** This identifier value is used to identify an estimate. Actual costs may vary. Search "fees" in [Seller Central](https://sellercentral.amazon.com/) and consult the store-specific fee schedule for the most up-to-date information.
|
|
106
|
+
|
|
107
|
+
**Note:** When using the `getMyFeesEstimateForASIN` operation with an ASIN, the fee estimates might be different. This is because these estimates use the item's catalog size, which might not always match the actual size of the item sent to Amazon.
|
|
108
|
+
|
|
109
|
+
**Usage Plan:**
|
|
110
|
+
|
|
111
|
+
====================================== ==============
|
|
112
|
+
Rate (requests per second) Burst
|
|
113
|
+
====================================== ==============
|
|
114
|
+
1 2
|
|
115
|
+
====================================== ==============
|
|
116
|
+
|
|
117
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
118
|
+
|
|
101
119
|
Examples:
|
|
102
120
|
literal blocks::
|
|
103
|
-
|
|
104
|
-
ProductFees().get_product_fees_estimate_for_asin("
|
|
105
|
-
|
|
106
|
-
"PointsNumber": 0,
|
|
107
|
-
"PointsMonetaryValue": {
|
|
108
|
-
"CurrencyCode": "USD",
|
|
109
|
-
"Amount": 0
|
|
110
|
-
}
|
|
111
|
-
})
|
|
112
|
-
|
|
121
|
+
|
|
122
|
+
await ProductFees().get_product_fees_estimate_for_asin("value", "value", "value", "value", "value", "value", "value", "value")
|
|
123
|
+
|
|
113
124
|
Args:
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
shipping_price:
|
|
118
|
-
is_fba:
|
|
119
|
-
points:
|
|
120
|
-
marketplace_id: str | Defaults to self.marketplace_id
|
|
121
|
-
optional_fulfillment_program:
|
|
122
|
-
**kwargs:
|
|
123
|
-
|
|
125
|
+
body: GetMyFeesEstimateRequest | required The request body schema for the getMyFeesEstimates operation
|
|
126
|
+
Asin: object | required The Amazon Standard Identification Number (ASIN) of the item.
|
|
127
|
+
|
|
124
128
|
Returns:
|
|
125
|
-
ApiResponse
|
|
126
|
-
|
|
129
|
+
ApiResponse
|
|
127
130
|
"""
|
|
128
131
|
kwargs.update(
|
|
129
132
|
create_fees_body(
|
|
@@ -139,34 +142,56 @@ class ProductFees(AsyncBaseClient):
|
|
|
139
142
|
)
|
|
140
143
|
return await self._request(fill_query_params(kwargs.pop("path"), asin), data=kwargs)
|
|
141
144
|
|
|
142
|
-
|
|
145
|
+
@sp_endpoint("/products/fees/v0/feesEstimate", method="POST")
|
|
146
|
+
async def get_my_fees_estimates(
|
|
147
|
+
self, estimate_requests: List[dict], **kwargs
|
|
148
|
+
) -> ApiResponse:
|
|
143
149
|
"""
|
|
144
|
-
|
|
150
|
+
get_my_fees_estimates(self, estimate_requests, **kwargs) -> ApiResponse
|
|
151
|
+
|
|
152
|
+
Returns the estimated fees for a list of products.
|
|
153
|
+
|
|
154
|
+
**Usage Plan:**
|
|
155
|
+
|
|
156
|
+
====================================== ==============
|
|
157
|
+
Rate (requests per second) Burst
|
|
158
|
+
====================================== ==============
|
|
159
|
+
0.5 1
|
|
160
|
+
====================================== ==============
|
|
161
|
+
|
|
162
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
163
|
+
|
|
164
|
+
Examples:
|
|
165
|
+
literal blocks::
|
|
166
|
+
|
|
167
|
+
await ProductFees().get_my_fees_estimates("value")
|
|
168
|
+
|
|
169
|
+
Args:
|
|
170
|
+
body: GetMyFeesEstimatesRequest | required The request body schema for the getMyFeesEstimates operation
|
|
171
|
+
|
|
172
|
+
Returns:
|
|
173
|
+
ApiResponse
|
|
174
|
+
"""
|
|
175
|
+
kwargs.pop("path", None)
|
|
176
|
+
kwargs.pop("method", None)
|
|
177
|
+
return await self.get_product_fees_estimate(estimate_requests)
|
|
145
178
|
|
|
179
|
+
async def get_product_fees_estimate(self, estimate_requests: List[dict]) -> ApiResponse:
|
|
180
|
+
"""
|
|
181
|
+
get_product_fees_estimate(self, estimate_requests) -> ApiResponse
|
|
182
|
+
|
|
146
183
|
Return fees for multiple products
|
|
147
|
-
|
|
184
|
+
|
|
148
185
|
Examples:
|
|
149
186
|
literal blocks::
|
|
150
|
-
|
|
151
|
-
ProductFees().get_product_fees_estimate(
|
|
152
|
-
|
|
153
|
-
dict(id_type='ASIN', id_value='B012345678', price=100),
|
|
154
|
-
dict(id_type='ASIN', id_value='B012345678', price=50, is_fba=True),
|
|
155
|
-
]
|
|
156
|
-
)
|
|
157
|
-
|
|
158
|
-
|
|
187
|
+
|
|
188
|
+
await ProductFees().get_product_fees_estimate("value")
|
|
189
|
+
|
|
159
190
|
Args:
|
|
160
|
-
estimate_requests:
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
currency:
|
|
165
|
-
shipping_price:
|
|
166
|
-
is_fba:
|
|
167
|
-
points:
|
|
168
|
-
marketplace_id: str | Defaults to self.marketplace_id
|
|
169
|
-
optional_fulfillment_program:
|
|
191
|
+
estimate_requests: | required
|
|
192
|
+
|
|
193
|
+
Returns:
|
|
194
|
+
ApiResponse
|
|
170
195
|
"""
|
|
171
196
|
data = []
|
|
172
197
|
for estimate in estimate_requests:
|
|
@@ -184,6 +209,7 @@ class ProductFees(AsyncBaseClient):
|
|
|
184
209
|
"/products/fees/v0/feesEstimate",
|
|
185
210
|
data=data,
|
|
186
211
|
params=dict(method="POST"),
|
|
212
|
+
add_marketplace=False,
|
|
187
213
|
wrap_list=True,
|
|
188
214
|
)
|
|
189
215
|
|