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
|
@@ -15,26 +15,29 @@ class VendorShipments(Client):
|
|
|
15
15
|
def submit_shipment_confirmations(self, **kwargs) -> ApiResponse:
|
|
16
16
|
"""
|
|
17
17
|
submit_shipment_confirmations(self, **kwargs) -> ApiResponse
|
|
18
|
-
|
|
18
|
+
|
|
19
19
|
Submits one or more shipment confirmations for vendor orders.
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
**Usage Plan:**
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
22
|
+
|
|
23
|
+
====================================== ==============
|
|
24
|
+
Rate (requests per second) Burst
|
|
25
|
+
====================================== ==============
|
|
26
|
+
10 10
|
|
27
|
+
====================================== ==============
|
|
28
|
+
|
|
29
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
30
|
+
|
|
31
|
+
Examples:
|
|
32
|
+
literal blocks::
|
|
33
|
+
|
|
34
|
+
VendorShipments().submit_shipment_confirmations()
|
|
35
|
+
|
|
36
|
+
Args:
|
|
37
|
+
body: SubmitShipmentConfirmationsRequest | required A request to submit shipment confirmation.
|
|
38
|
+
|
|
39
|
+
Returns:
|
|
40
|
+
ApiResponse
|
|
38
41
|
"""
|
|
39
42
|
|
|
40
43
|
return self._request(kwargs.pop("path"), data=kwargs)
|
|
@@ -43,26 +46,29 @@ class VendorShipments(Client):
|
|
|
43
46
|
def submit_shipments(self, **kwargs) -> ApiResponse:
|
|
44
47
|
"""
|
|
45
48
|
submit_shipments(self, **kwargs) -> ApiResponse
|
|
46
|
-
|
|
49
|
+
|
|
47
50
|
Submits one or more shipment request for vendor Orders.
|
|
48
|
-
|
|
51
|
+
|
|
49
52
|
**Usage Plan:**
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
53
|
+
|
|
54
|
+
====================================== ==============
|
|
55
|
+
Rate (requests per second) Burst
|
|
56
|
+
====================================== ==============
|
|
57
|
+
10 10
|
|
58
|
+
====================================== ==============
|
|
59
|
+
|
|
60
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
61
|
+
|
|
62
|
+
Examples:
|
|
63
|
+
literal blocks::
|
|
64
|
+
|
|
65
|
+
VendorShipments().submit_shipments()
|
|
66
|
+
|
|
67
|
+
Args:
|
|
68
|
+
body: SubmitShipments | required A request to submit shipment request.
|
|
69
|
+
|
|
70
|
+
Returns:
|
|
71
|
+
ApiResponse
|
|
66
72
|
"""
|
|
67
73
|
|
|
68
74
|
return self._request(kwargs.pop("path"), data=kwargs)
|
|
@@ -71,47 +77,122 @@ class VendorShipments(Client):
|
|
|
71
77
|
def get_shipment_details(self, **kwargs) -> ApiResponse:
|
|
72
78
|
"""
|
|
73
79
|
get_shipment_details(self, **kwargs) -> ApiResponse
|
|
74
|
-
|
|
80
|
+
|
|
75
81
|
Returns the Details about Shipment, Carrier Details, status of the shipment, container details and other details related to shipment based on the filter parameters value that you specify.
|
|
76
|
-
|
|
82
|
+
|
|
77
83
|
**Usage Plan:**
|
|
84
|
+
|
|
85
|
+
====================================== ==============
|
|
86
|
+
Rate (requests per second) Burst
|
|
87
|
+
====================================== ==============
|
|
88
|
+
10 10
|
|
89
|
+
====================================== ==============
|
|
90
|
+
|
|
91
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
92
|
+
|
|
93
|
+
Examples:
|
|
94
|
+
literal blocks::
|
|
95
|
+
|
|
96
|
+
VendorShipments().get_shipment_details()
|
|
97
|
+
|
|
98
|
+
Args:
|
|
99
|
+
key limit: object | The limit to the number of records returned. Default value is 50 records.
|
|
100
|
+
key sortOrder: object | Sort in ascending or descending order by purchase order creation date.
|
|
101
|
+
key nextToken: object | Used for pagination when there are more shipments than the specified result size limit.
|
|
102
|
+
key createdAfter: object | Get Shipment Details that became available after this timestamp will be included in the result. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
103
|
+
key createdBefore: object | Get Shipment Details that became available before this timestamp will be included in the result. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
104
|
+
key shipmentConfirmedBefore: object | Get Shipment Details by passing Shipment confirmed create Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
105
|
+
key shipmentConfirmedAfter: object | Get Shipment Details by passing Shipment confirmed create Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
106
|
+
key packageLabelCreatedBefore: object | Get Shipment Details by passing Package label create Date by buyer. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
107
|
+
key packageLabelCreatedAfter: object | Get Shipment Details by passing Package label create Date After by buyer. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
108
|
+
key shippedBefore: object | Get Shipment Details by passing Shipped Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
109
|
+
key shippedAfter: object | Get Shipment Details by passing Shipped Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
110
|
+
key estimatedDeliveryBefore: object | Get Shipment Details by passing Estimated Delivery Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
111
|
+
key estimatedDeliveryAfter: object | Get Shipment Details by passing Estimated Delivery Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
112
|
+
key shipmentDeliveryBefore: object | Get Shipment Details by passing Shipment Delivery Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
113
|
+
key shipmentDeliveryAfter: object | Get Shipment Details by passing Shipment Delivery Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
114
|
+
key requestedPickUpBefore: object | Get Shipment Details by passing Before Requested pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
115
|
+
key requestedPickUpAfter: object | Get Shipment Details by passing After Requested pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
116
|
+
key scheduledPickUpBefore: object | Get Shipment Details by passing Before scheduled pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
117
|
+
key scheduledPickUpAfter: object | Get Shipment Details by passing After Scheduled pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
118
|
+
key currentShipmentStatus: object | Get Shipment Details by passing Current shipment status.
|
|
119
|
+
key vendorShipmentIdentifier: object | Get Shipment Details by passing Vendor Shipment ID
|
|
120
|
+
key buyerReferenceNumber: object | Get Shipment Details by passing buyer Reference ID
|
|
121
|
+
key buyerWarehouseCode: object | Get Shipping Details based on buyer warehouse code. This value should be same as 'shipToParty.partyId' in the Shipment.
|
|
122
|
+
key sellerWarehouseCode: object | Get Shipping Details based on vendor warehouse code. This value should be same as 'sellingParty.partyId' in the Shipment.
|
|
123
|
+
|
|
124
|
+
Returns:
|
|
125
|
+
ApiResponse
|
|
126
|
+
"""
|
|
78
127
|
|
|
79
|
-
|
|
80
|
-
| ---- | ---- |
|
|
81
|
-
| 10 | 10 |
|
|
128
|
+
return self._request(kwargs.pop("path"), params=kwargs)
|
|
82
129
|
|
|
83
|
-
The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The table above indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may see higher rate and burst values than those shown here. For more information, see [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
|
|
84
130
|
|
|
131
|
+
@sp_endpoint("/vendor/shipping/v1/shipmentConfirmation", method="POST")
|
|
132
|
+
def submit_shipment_confirmation(self, **kwargs) -> ApiResponse:
|
|
133
|
+
"""
|
|
134
|
+
submit_shipment_confirmation(self, **kwargs) -> ApiResponse
|
|
135
|
+
|
|
136
|
+
Submits one shipment confirmation for vendor orders and get response immediately.
|
|
137
|
+
|
|
138
|
+
**Usage Plan:**
|
|
139
|
+
|
|
140
|
+
====================================== ==============
|
|
141
|
+
Rate (requests per second) Burst
|
|
142
|
+
====================================== ==============
|
|
143
|
+
10 10
|
|
144
|
+
====================================== ==============
|
|
145
|
+
|
|
146
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
147
|
+
|
|
148
|
+
Examples:
|
|
149
|
+
literal blocks::
|
|
150
|
+
|
|
151
|
+
VendorShipments().submit_shipment_confirmation()
|
|
152
|
+
|
|
85
153
|
Args:
|
|
154
|
+
body: SubmitShipmentConfirmationRequest | required A request to submit shipment confirmation.
|
|
155
|
+
|
|
156
|
+
Returns:
|
|
157
|
+
ApiResponse
|
|
158
|
+
"""
|
|
159
|
+
return self._request(kwargs.pop("path"), data=kwargs)
|
|
86
160
|
|
|
87
|
-
key limit:integer | The limit to the number of records returned. Default value is 50 records.
|
|
88
|
-
key sortOrder:string | Sort in ascending or descending order by purchase order creation date.
|
|
89
|
-
key nextToken:string | Used for pagination when there are more shipments than the specified result size limit.
|
|
90
|
-
key createdAfter:string | Get Shipment Details that became available after this timestamp will be included in the result. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
91
|
-
key createdBefore:string | Get Shipment Details that became available before this timestamp will be included in the result. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
92
|
-
key shipmentConfirmedBefore:string | Get Shipment Details by passing Shipment confirmed create Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
93
|
-
key shipmentConfirmedAfter:string | Get Shipment Details by passing Shipment confirmed create Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
94
|
-
key packageLabelCreatedBefore:string | Get Shipment Details by passing Package label create Date by buyer. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
95
|
-
key packageLabelCreatedAfter:string | Get Shipment Details by passing Package label create Date After by buyer. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
96
|
-
key shippedBefore:string | Get Shipment Details by passing Shipped Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
97
|
-
key shippedAfter:string | Get Shipment Details by passing Shipped Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
98
|
-
key estimatedDeliveryBefore:string | Get Shipment Details by passing Estimated Delivery Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
99
|
-
key estimatedDeliveryAfter:string | Get Shipment Details by passing Estimated Delivery Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
100
|
-
key shipmentDeliveryBefore:string | Get Shipment Details by passing Shipment Delivery Date Before. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
101
|
-
key shipmentDeliveryAfter:string | Get Shipment Details by passing Shipment Delivery Date After. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
102
|
-
key requestedPickUpBefore:string | Get Shipment Details by passing Before Requested pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
103
|
-
key requestedPickUpAfter:string | Get Shipment Details by passing After Requested pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
104
|
-
key scheduledPickUpBefore:string | Get Shipment Details by passing Before scheduled pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
105
|
-
key scheduledPickUpAfter:string | Get Shipment Details by passing After Scheduled pickup date. Must be in <a href='https://developer-docs.amazon.com/sp-api/docs/iso-8601'>ISO 8601</a> format.
|
|
106
|
-
key currentShipmentStatus:string | Get Shipment Details by passing Current shipment status.
|
|
107
|
-
key vendorShipmentIdentifier:string | Get Shipment Details by passing Vendor Shipment ID
|
|
108
|
-
key buyerReferenceNumber:string | Get Shipment Details by passing buyer Reference ID
|
|
109
|
-
key buyerWarehouseCode:string | Get Shipping Details based on buyer warehouse code. This value should be same as 'shipToParty.partyId' in the Shipment.
|
|
110
|
-
key sellerWarehouseCode:string | Get Shipping Details based on vendor warehouse code. This value should be same as 'sellingParty.partyId' in the Shipment.
|
|
111
161
|
|
|
112
162
|
|
|
163
|
+
@sp_endpoint("/vendor/shipping/v1/transportLabels", method="GET")
|
|
164
|
+
def get_shipment_labels(self, **kwargs) -> ApiResponse:
|
|
165
|
+
"""
|
|
166
|
+
get_shipment_labels(self, **kwargs) -> ApiResponse
|
|
167
|
+
|
|
168
|
+
Returns small parcel shipment labels based on the filters that you specify.
|
|
169
|
+
|
|
170
|
+
**Usage Plan:**
|
|
171
|
+
|
|
172
|
+
====================================== ==============
|
|
173
|
+
Rate (requests per second) Burst
|
|
174
|
+
====================================== ==============
|
|
175
|
+
10 10
|
|
176
|
+
====================================== ==============
|
|
177
|
+
|
|
178
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
179
|
+
|
|
180
|
+
Examples:
|
|
181
|
+
literal blocks::
|
|
182
|
+
|
|
183
|
+
VendorShipments().get_shipment_labels()
|
|
184
|
+
|
|
185
|
+
Args:
|
|
186
|
+
key limit: object | The limit to the number of records returned. Default value is 50 records.
|
|
187
|
+
key sortOrder: object | Sort the list by shipment label creation date in ascending or descending order.
|
|
188
|
+
key nextToken: object | A token that you use to retrieve the next page of results. The response includes `nextToken` when the number of results exceeds the specified `pageSize` value. To get the next page of results, call the operation with this token and include the same arguments as the call that produced the token. To get a complete list, call this operation until `nextToken` is null. Note that this operation can return empty pages.
|
|
189
|
+
key labelCreatedAfter: object | Shipment labels created after this time will be included in the result. This field must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) datetime format.
|
|
190
|
+
key labelCreatedBefore: object | Shipment labels created before this time will be included in the result. This field must be in [ISO 8601](https://developer-docs.amazon.com/sp-api/docs/iso-8601) datetime format.
|
|
191
|
+
key buyerReferenceNumber: object | Get Shipment labels by passing buyer reference number.
|
|
192
|
+
key vendorShipmentIdentifier: object | Get Shipment labels by passing vendor shipment identifier.
|
|
193
|
+
key sellerWarehouseCode: object | Get Shipping labels based on vendor warehouse code. This value must be same as the `sellingParty.partyId` in the shipment.
|
|
194
|
+
|
|
113
195
|
Returns:
|
|
114
|
-
ApiResponse
|
|
196
|
+
ApiResponse
|
|
115
197
|
"""
|
|
116
|
-
|
|
117
198
|
return self._request(kwargs.pop("path"), params=kwargs)
|
|
@@ -15,24 +15,29 @@ class VendorTransactionStatus(Client):
|
|
|
15
15
|
def get_transaction(self, transactionId, **kwargs) -> ApiResponse:
|
|
16
16
|
"""
|
|
17
17
|
get_transaction(self, transactionId, **kwargs) -> ApiResponse
|
|
18
|
-
|
|
18
|
+
|
|
19
19
|
Returns the status of the transaction that you specify.
|
|
20
|
-
|
|
21
|
-
**Usage
|
|
22
|
-
|
|
20
|
+
|
|
21
|
+
**Usage Plan:**
|
|
22
|
+
|
|
23
23
|
====================================== ==============
|
|
24
24
|
Rate (requests per second) Burst
|
|
25
25
|
====================================== ==============
|
|
26
|
-
10
|
|
26
|
+
10 20
|
|
27
27
|
====================================== ==============
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
|
|
29
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
30
|
+
|
|
31
|
+
Examples:
|
|
32
|
+
literal blocks::
|
|
33
|
+
|
|
34
|
+
VendorTransactionStatus().get_transaction("value")
|
|
35
|
+
|
|
31
36
|
Args:
|
|
32
|
-
transactionId:
|
|
33
|
-
|
|
37
|
+
transactionId: object | required The GUID provided by Amazon in the 'transactionId' field in response to the post request of a specific transaction.
|
|
38
|
+
|
|
34
39
|
Returns:
|
|
35
|
-
ApiResponse
|
|
40
|
+
ApiResponse
|
|
36
41
|
"""
|
|
37
42
|
|
|
38
43
|
return self._request(
|
sp_api/asyncio/api/__init__.py
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
from .finances.finances import Finances, FinancesVersion
|
|
2
|
+
from .finances.finances_2024_06_01 import FinancesV20240601
|
|
3
|
+
from .finances.finances_2024_06_19 import FinancesV20240619
|
|
4
|
+
from .finances.finances_v0 import FinancesV0
|
|
2
5
|
from .notifications.notifications import Notifications
|
|
3
6
|
from .orders.orders import Orders, OrdersVersion
|
|
4
7
|
from .orders.orders_2026_01_01 import OrdersV20260101
|
|
@@ -8,22 +11,57 @@ from .sellers.sellers import Sellers
|
|
|
8
11
|
from .reports.reports import Reports
|
|
9
12
|
from .reports.reports import Reports as ReportsV2
|
|
10
13
|
|
|
11
|
-
from .products.products import Products
|
|
14
|
+
from .products.products import Products, ProductsVersion
|
|
15
|
+
from .products.products_2022_05_01 import ProductsV20220501
|
|
16
|
+
from .products.products_v0 import ProductsV0
|
|
12
17
|
from .sales.sales import Sales
|
|
13
18
|
from .catalog.catalog import Catalog
|
|
14
|
-
from .feeds.feeds import Feeds
|
|
19
|
+
from .feeds.feeds import Feeds, FeedsVersion
|
|
15
20
|
from .feeds.feeds import Feeds as FeedsV2
|
|
21
|
+
from .feeds.feeds_2021_06_30 import FeedsV20210630
|
|
16
22
|
|
|
17
23
|
from .inventories.inventories import Inventories
|
|
18
24
|
from .fulfillment_inbound.fulfillment_inbound import (
|
|
19
25
|
FulfillmentInbound,
|
|
20
26
|
FulfillmentInboundVersion,
|
|
21
27
|
)
|
|
28
|
+
from .fulfillment_inbound.fulfillment_inbound_2024_03_20 import (
|
|
29
|
+
FulfillmentInboundV20240320,
|
|
30
|
+
)
|
|
31
|
+
from .fulfillment_inbound.fulfillment_inbound_v0 import FulfillmentInboundV0
|
|
22
32
|
from .upload.upload import Upload
|
|
23
33
|
from .messaging.messaging import Messaging
|
|
24
34
|
from .merchant_fulfillment.merchant_fulfillment import MerchantFulfillment
|
|
25
35
|
|
|
26
36
|
##### DO NOT DELETE ########## INSERT IMPORT HERE #######
|
|
37
|
+
from .delivery_by_amazon.delivery_by_amazon import (
|
|
38
|
+
DeliveryByAmazon,
|
|
39
|
+
DeliveryByAmazonVersion,
|
|
40
|
+
)
|
|
41
|
+
from .delivery_by_amazon.delivery_by_amazon_2022_07_01 import DeliveryByAmazonV20220701
|
|
42
|
+
|
|
43
|
+
from .invoices.invoices import Invoices, InvoicesVersion
|
|
44
|
+
from .invoices.invoices_2024_06_19 import InvoicesV20240619
|
|
45
|
+
|
|
46
|
+
from .seller_wallet.seller_wallet import SellerWallet, SellerWalletVersion
|
|
47
|
+
from .seller_wallet.seller_wallet_2024_03_01 import SellerWalletV20240301
|
|
48
|
+
|
|
49
|
+
from .shipment_invoicing.shipment_invoicing import (
|
|
50
|
+
ShipmentInvoicing,
|
|
51
|
+
ShipmentInvoicingVersion,
|
|
52
|
+
)
|
|
53
|
+
from .shipment_invoicing.shipment_invoicing_v0 import ShipmentInvoicingV0
|
|
54
|
+
|
|
55
|
+
from .vehicles.vehicles import Vehicles, VehiclesVersion
|
|
56
|
+
from .vehicles.vehicles_2024_11_01 import VehiclesV20241101
|
|
57
|
+
|
|
58
|
+
from .vendor_direct_fulfillment_sandbox_test_data.vendor_direct_fulfillment_sandbox_test_data import (
|
|
59
|
+
VendorDirectFulfillmentSandboxTestData,
|
|
60
|
+
VendorDirectFulfillmentSandboxTestDataVersion,
|
|
61
|
+
)
|
|
62
|
+
from .vendor_direct_fulfillment_sandbox_test_data.vendor_direct_fulfillment_sandbox_test_data_2021_10_28 import (
|
|
63
|
+
VendorDirectFulfillmentSandboxTestDataV20211028,
|
|
64
|
+
)
|
|
27
65
|
from .application_integrations.application_integrations import ApplicationIntegrations
|
|
28
66
|
|
|
29
67
|
from .easy_ship.easy_ship import EasyShip
|
|
@@ -35,10 +73,14 @@ from .listings_restrictions.listings_restrictions import ListingsRestrictions
|
|
|
35
73
|
from .messaging.messaging import Messaging
|
|
36
74
|
|
|
37
75
|
from .catalog_items.catalog_items import CatalogItems, CatalogItemsVersion
|
|
76
|
+
from .catalog_items.catalog_items_2020_12_01 import CatalogItemsV20201201
|
|
77
|
+
from .catalog_items.catalog_items_2022_04_01 import CatalogItemsV20220401
|
|
38
78
|
|
|
39
79
|
from .product_type_definitions.product_type_definitions import ProductTypeDefinitions
|
|
40
80
|
|
|
41
|
-
from .listings_items.listings_items import ListingsItems
|
|
81
|
+
from .listings_items.listings_items import ListingsItems, ListingsItemsVersion
|
|
82
|
+
from .listings_items.listings_items_2020_09_01 import ListingsItemsV20200901
|
|
83
|
+
from .listings_items.listings_items_2021_08_01 import ListingsItemsV20210801
|
|
42
84
|
|
|
43
85
|
from .vendor_transaction_status.vendor_transaction_status import VendorTransactionStatus
|
|
44
86
|
|
|
@@ -50,10 +92,24 @@ from .vendor_invoices.vendor_invoices import VendorInvoices
|
|
|
50
92
|
|
|
51
93
|
from .vendor_direct_fulfillment_transactions.vendor_direct_fulfillment_transactions import (
|
|
52
94
|
VendorDirectFulfillmentTransactions,
|
|
95
|
+
VendorDirectFulfillmentTransactionsVersion,
|
|
96
|
+
)
|
|
97
|
+
from .vendor_direct_fulfillment_transactions.vendor_direct_fulfillment_transactions_2021_12_28 import (
|
|
98
|
+
VendorDirectFulfillmentTransactionsV20211228,
|
|
99
|
+
)
|
|
100
|
+
from .vendor_direct_fulfillment_transactions.vendor_direct_fulfillment_transactions_v1 import (
|
|
101
|
+
VendorDirectFulfillmentTransactionsV1,
|
|
53
102
|
)
|
|
54
103
|
|
|
55
104
|
from .vendor_direct_fulfillment_shipping.vendor_direct_fulfillment_shipping import (
|
|
56
105
|
VendorDirectFulfillmentShipping,
|
|
106
|
+
VendorDirectFulfillmentShippingVersion,
|
|
107
|
+
)
|
|
108
|
+
from .vendor_direct_fulfillment_shipping.vendor_direct_fulfillment_shipping_2021_12_28 import (
|
|
109
|
+
VendorDirectFulfillmentShippingV20211228,
|
|
110
|
+
)
|
|
111
|
+
from .vendor_direct_fulfillment_shipping.vendor_direct_fulfillment_shipping_v1 import (
|
|
112
|
+
VendorDirectFulfillmentShippingV1,
|
|
57
113
|
)
|
|
58
114
|
|
|
59
115
|
from .vendor_direct_fulfillment_payments.vendor_direct_fulfillment_payments import (
|
|
@@ -62,6 +118,13 @@ from .vendor_direct_fulfillment_payments.vendor_direct_fulfillment_payments impo
|
|
|
62
118
|
|
|
63
119
|
from .vendor_direct_fulfillment_orders.vendor_direct_fulfillment_orders import (
|
|
64
120
|
VendorDirectFulfillmentOrders,
|
|
121
|
+
VendorDirectFulfillmentOrdersVersion,
|
|
122
|
+
)
|
|
123
|
+
from .vendor_direct_fulfillment_orders.vendor_direct_fulfillment_orders_2021_12_28 import (
|
|
124
|
+
VendorDirectFulfillmentOrdersV20211228,
|
|
125
|
+
)
|
|
126
|
+
from .vendor_direct_fulfillment_orders.vendor_direct_fulfillment_orders_v1 import (
|
|
127
|
+
VendorDirectFulfillmentOrdersV1,
|
|
65
128
|
)
|
|
66
129
|
|
|
67
130
|
from .vendor_direct_fulfillment_inventory.vendor_direct_fulfillment_inventory import (
|
|
@@ -72,7 +135,9 @@ from .tokens.tokens import Tokens
|
|
|
72
135
|
|
|
73
136
|
from .solicitations.solicitations import Solicitations
|
|
74
137
|
|
|
75
|
-
from .shipping.shipping import Shipping
|
|
138
|
+
from .shipping.shipping import Shipping, ShippingVersion
|
|
139
|
+
from .shipping.shipping_v1 import ShippingV1
|
|
140
|
+
from .shipping.shipping_v2 import ShippingV2
|
|
76
141
|
|
|
77
142
|
from .services.services import Services
|
|
78
143
|
|
|
@@ -98,12 +163,48 @@ from .amazon_warehousing_and_distribu.amazon_warehousing_and_distribu import (
|
|
|
98
163
|
AmazonWarehousingAndDistribution,
|
|
99
164
|
AmazonWarehousingAndDistributionVersion,
|
|
100
165
|
)
|
|
166
|
+
from .amazon_warehousing_and_distribu.amazon_warehousing_and_distribu_2024_05_09 import (
|
|
167
|
+
AmazonWarehousingAndDistributionV20240509,
|
|
168
|
+
)
|
|
101
169
|
|
|
102
170
|
from .external_fulfillment.external_fulfillment import ExternalFulfillment
|
|
171
|
+
from .external_fulfillment.inventory import (
|
|
172
|
+
ExternalFulfillmentInventory,
|
|
173
|
+
ExternalFulfillmentInventoryVersion,
|
|
174
|
+
)
|
|
175
|
+
from .external_fulfillment.inventory_2021_01_06 import (
|
|
176
|
+
ExternalFulfillmentInventoryV20210106,
|
|
177
|
+
)
|
|
178
|
+
from .external_fulfillment.inventory_2024_09_11 import (
|
|
179
|
+
ExternalFulfillmentInventoryV20240911,
|
|
180
|
+
)
|
|
181
|
+
from .external_fulfillment.returns import (
|
|
182
|
+
ExternalFulfillmentReturns,
|
|
183
|
+
ExternalFulfillmentReturnsVersion,
|
|
184
|
+
)
|
|
185
|
+
from .external_fulfillment.returns_2021_08_19 import (
|
|
186
|
+
ExternalFulfillmentReturnsV20210819,
|
|
187
|
+
)
|
|
188
|
+
from .external_fulfillment.returns_2024_09_11 import (
|
|
189
|
+
ExternalFulfillmentReturnsV20240911,
|
|
190
|
+
)
|
|
191
|
+
from .external_fulfillment.shipping import (
|
|
192
|
+
ExternalFulfillmentShipping,
|
|
193
|
+
ExternalFulfillmentShippingVersion,
|
|
194
|
+
)
|
|
195
|
+
from .external_fulfillment.shipping_2021_01_06 import (
|
|
196
|
+
ExternalFulfillmentShippingV20210106,
|
|
197
|
+
)
|
|
198
|
+
from .external_fulfillment.shipping_2024_09_11 import (
|
|
199
|
+
ExternalFulfillmentShippingV20240911,
|
|
200
|
+
)
|
|
103
201
|
|
|
104
202
|
__all__ = [
|
|
105
203
|
"Sales",
|
|
106
204
|
"Products",
|
|
205
|
+
"ProductsVersion",
|
|
206
|
+
"ProductsV0",
|
|
207
|
+
"ProductsV20220501",
|
|
107
208
|
"Reports",
|
|
108
209
|
"Orders",
|
|
109
210
|
"OrdersVersion",
|
|
@@ -113,16 +214,51 @@ __all__ = [
|
|
|
113
214
|
"Notifications",
|
|
114
215
|
"ProductFees",
|
|
115
216
|
"Finances",
|
|
217
|
+
"FinancesV0",
|
|
218
|
+
"FinancesV20240601",
|
|
219
|
+
"FinancesV20240619",
|
|
116
220
|
"Catalog",
|
|
117
221
|
"Feeds",
|
|
118
222
|
"Inventories",
|
|
119
223
|
"FulfillmentInbound",
|
|
224
|
+
"FulfillmentInboundV0",
|
|
225
|
+
"FulfillmentInboundV20240320",
|
|
120
226
|
"Upload",
|
|
121
227
|
"Messaging",
|
|
122
228
|
"FulfillmentInbound",
|
|
123
229
|
"MerchantFulfillment",
|
|
124
230
|
##### DO NOT DELETE ########## INSERT TITLE HERE #######
|
|
231
|
+
"DeliveryByAmazon",
|
|
232
|
+
"DeliveryByAmazonVersion",
|
|
233
|
+
"DeliveryByAmazonV20220701",
|
|
234
|
+
"Invoices",
|
|
235
|
+
"InvoicesVersion",
|
|
236
|
+
"InvoicesV20240619",
|
|
237
|
+
"SellerWallet",
|
|
238
|
+
"SellerWalletVersion",
|
|
239
|
+
"SellerWalletV20240301",
|
|
240
|
+
"ShipmentInvoicing",
|
|
241
|
+
"ShipmentInvoicingVersion",
|
|
242
|
+
"ShipmentInvoicingV0",
|
|
243
|
+
"Vehicles",
|
|
244
|
+
"VehiclesVersion",
|
|
245
|
+
"VehiclesV20241101",
|
|
246
|
+
"VendorDirectFulfillmentSandboxTestData",
|
|
247
|
+
"VendorDirectFulfillmentSandboxTestDataVersion",
|
|
248
|
+
"VendorDirectFulfillmentSandboxTestDataV20211028",
|
|
125
249
|
"ExternalFulfillment",
|
|
250
|
+
"ExternalFulfillmentInventory",
|
|
251
|
+
"ExternalFulfillmentInventoryVersion",
|
|
252
|
+
"ExternalFulfillmentInventoryV20210106",
|
|
253
|
+
"ExternalFulfillmentInventoryV20240911",
|
|
254
|
+
"ExternalFulfillmentReturns",
|
|
255
|
+
"ExternalFulfillmentReturnsVersion",
|
|
256
|
+
"ExternalFulfillmentReturnsV20210819",
|
|
257
|
+
"ExternalFulfillmentReturnsV20240911",
|
|
258
|
+
"ExternalFulfillmentShipping",
|
|
259
|
+
"ExternalFulfillmentShippingVersion",
|
|
260
|
+
"ExternalFulfillmentShippingV20210106",
|
|
261
|
+
"ExternalFulfillmentShippingV20240911",
|
|
126
262
|
"ApplicationIntegrations",
|
|
127
263
|
"CustomerFeedback",
|
|
128
264
|
"FulfillmentInbound",
|
|
@@ -138,23 +274,41 @@ __all__ = [
|
|
|
138
274
|
"FulfillmentInboundVersion",
|
|
139
275
|
"Feeds",
|
|
140
276
|
"FeedsV2",
|
|
277
|
+
"FeedsV20210630",
|
|
141
278
|
"ReportsV2",
|
|
142
279
|
"Messaging",
|
|
143
280
|
"CatalogItems",
|
|
281
|
+
"CatalogItemsV20201201",
|
|
282
|
+
"CatalogItemsV20220401",
|
|
144
283
|
"ProductTypeDefinitions",
|
|
145
284
|
"ListingsItems",
|
|
285
|
+
"ListingsItemsVersion",
|
|
286
|
+
"ListingsItemsV20200901",
|
|
287
|
+
"ListingsItemsV20210801",
|
|
146
288
|
"VendorTransactionStatus",
|
|
147
289
|
"VendorShipments",
|
|
148
290
|
"VendorOrders",
|
|
149
291
|
"VendorInvoices",
|
|
150
292
|
"VendorDirectFulfillmentTransactions",
|
|
293
|
+
"VendorDirectFulfillmentTransactionsVersion",
|
|
294
|
+
"VendorDirectFulfillmentTransactionsV1",
|
|
295
|
+
"VendorDirectFulfillmentTransactionsV20211228",
|
|
151
296
|
"VendorDirectFulfillmentShipping",
|
|
297
|
+
"VendorDirectFulfillmentShippingVersion",
|
|
298
|
+
"VendorDirectFulfillmentShippingV1",
|
|
299
|
+
"VendorDirectFulfillmentShippingV20211228",
|
|
152
300
|
"VendorDirectFulfillmentPayments",
|
|
153
301
|
"VendorDirectFulfillmentOrders",
|
|
302
|
+
"VendorDirectFulfillmentOrdersVersion",
|
|
303
|
+
"VendorDirectFulfillmentOrdersV1",
|
|
304
|
+
"VendorDirectFulfillmentOrdersV20211228",
|
|
154
305
|
"VendorDirectFulfillmentInventory",
|
|
155
306
|
"Tokens",
|
|
156
307
|
"Solicitations",
|
|
157
308
|
"Shipping",
|
|
309
|
+
"ShippingVersion",
|
|
310
|
+
"ShippingV1",
|
|
311
|
+
"ShippingV2",
|
|
158
312
|
"Services",
|
|
159
313
|
"FbaSmallAndLight",
|
|
160
314
|
"FbaInboundEligibility",
|
|
@@ -166,4 +320,5 @@ __all__ = [
|
|
|
166
320
|
"DataKiosk",
|
|
167
321
|
"ApplicationManagement",
|
|
168
322
|
"AmazonWarehousingAndDistribution",
|
|
323
|
+
"AmazonWarehousingAndDistributionV20240509",
|
|
169
324
|
]
|