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
|
@@ -1,196 +1,124 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
from sp_api.base import Client, sp_endpoint, fill_query_params, ApiResponse
|
|
4
|
-
from sp_api.asyncio.base import AsyncBaseClient
|
|
1
|
+
from __future__ import annotations
|
|
5
2
|
|
|
3
|
+
import enum
|
|
4
|
+
from typing import Any, Literal, TYPE_CHECKING, overload
|
|
6
5
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
6
|
+
from sp_api.asyncio.base import AsyncBaseClient
|
|
7
|
+
from sp_api.util.versioned_client import VersionedClientMeta
|
|
8
|
+
|
|
9
|
+
from .vendor_direct_fulfillment_orders_2021_12_28 import (
|
|
10
|
+
VendorDirectFulfillmentOrdersV20211228,
|
|
11
|
+
)
|
|
12
|
+
from .vendor_direct_fulfillment_orders_v1 import VendorDirectFulfillmentOrdersV1
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class VendorDirectFulfillmentOrdersVersion(str, enum.Enum):
|
|
16
|
+
V1 = "v1"
|
|
17
|
+
V_2021_12_28 = "2021-12-28"
|
|
18
|
+
LATEST = "2021-12-28"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
if TYPE_CHECKING:
|
|
22
|
+
|
|
23
|
+
class _VendorDirectFulfillmentOrdersMeta(VersionedClientMeta):
|
|
24
|
+
@overload
|
|
25
|
+
def __call__(
|
|
26
|
+
cls,
|
|
27
|
+
*args: Any,
|
|
28
|
+
version: Literal[
|
|
29
|
+
VendorDirectFulfillmentOrdersVersion.V_2021_12_28,
|
|
30
|
+
VendorDirectFulfillmentOrdersVersion.LATEST,
|
|
31
|
+
"2021-12-28",
|
|
32
|
+
],
|
|
33
|
+
**kwargs: Any,
|
|
34
|
+
) -> VendorDirectFulfillmentOrdersV20211228: ...
|
|
35
|
+
|
|
36
|
+
@overload
|
|
37
|
+
def __call__(
|
|
38
|
+
cls,
|
|
39
|
+
*args: Any,
|
|
40
|
+
version: Literal[VendorDirectFulfillmentOrdersVersion.V1, "v1"],
|
|
41
|
+
**kwargs: Any,
|
|
42
|
+
) -> VendorDirectFulfillmentOrdersV1: ...
|
|
43
|
+
|
|
44
|
+
@overload
|
|
45
|
+
def __call__(
|
|
46
|
+
cls,
|
|
47
|
+
*args: Any,
|
|
48
|
+
version: None = None,
|
|
49
|
+
**kwargs: Any,
|
|
50
|
+
) -> VendorDirectFulfillmentOrdersV1: ...
|
|
51
|
+
|
|
52
|
+
@overload
|
|
53
|
+
def __call__(
|
|
54
|
+
cls,
|
|
55
|
+
*args: Any,
|
|
56
|
+
version: str | VendorDirectFulfillmentOrdersVersion,
|
|
57
|
+
**kwargs: Any,
|
|
58
|
+
) -> AsyncBaseClient: ...
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
else:
|
|
62
|
+
_VendorDirectFulfillmentOrdersMeta = VersionedClientMeta
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
class VendorDirectFulfillmentOrders(
|
|
66
|
+
AsyncBaseClient, metaclass=_VendorDirectFulfillmentOrdersMeta
|
|
67
|
+
):
|
|
68
|
+
"""Vendor Direct Fulfillment Orders API client.
|
|
69
|
+
|
|
70
|
+
This class dispatches to a versioned Vendor Direct Fulfillment Orders API client.
|
|
71
|
+
|
|
72
|
+
If you do not pass a version, the constructor returns the oldest supported implementation ("v1").
|
|
13
73
|
"""
|
|
14
74
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
Args:
|
|
66
|
-
purchaseOrderNumber:string | * REQUIRED The order identifier for the purchase order that you want. Formatting Notes: alpha-numeric code.
|
|
67
|
-
|
|
68
|
-
Returns:
|
|
69
|
-
ApiResponse:
|
|
70
|
-
"""
|
|
71
|
-
|
|
72
|
-
return await self._request(
|
|
73
|
-
fill_query_params(kwargs.pop("path"), purchaseOrderNumber), params=kwargs
|
|
74
|
-
)
|
|
75
|
-
|
|
76
|
-
@sp_endpoint("/vendor/directFulfillment/orders/v1/acknowledgements", method="POST")
|
|
77
|
-
async def submit_acknowledgement(self, **kwargs) -> ApiResponse:
|
|
78
|
-
"""
|
|
79
|
-
submit_acknowledgement(self, **kwargs) -> ApiResponse
|
|
80
|
-
|
|
81
|
-
Submits acknowledgements for one or more purchase orders.
|
|
82
|
-
|
|
83
|
-
**Usage Plans:**
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
====================================== ==============
|
|
87
|
-
Rate (requests per second) Burst
|
|
88
|
-
====================================== ==============
|
|
89
|
-
10 10
|
|
90
|
-
====================================== ==============
|
|
91
|
-
|
|
92
|
-
The x-amzn-RateLimit-Limit response header returns the usage plan rate limits that were applied to the requested operation. Rate limits for some selling partners will vary from the default rate and burst shown in the table above. For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
93
|
-
|
|
94
|
-
Args:
|
|
95
|
-
body: {
|
|
96
|
-
"orderAcknowledgements": [
|
|
97
|
-
{
|
|
98
|
-
"purchaseOrderNumber": "string",
|
|
99
|
-
"vendorOrderNumber": "string",
|
|
100
|
-
"acknowledgementDate": "2019-08-24T14:15:22Z",
|
|
101
|
-
"acknowledgementStatus": {
|
|
102
|
-
"code": "string",
|
|
103
|
-
"description": "string"
|
|
104
|
-
},
|
|
105
|
-
"sellingParty": {
|
|
106
|
-
"partyId": "string",
|
|
107
|
-
"address": {
|
|
108
|
-
"name": "string",
|
|
109
|
-
"attention": "string",
|
|
110
|
-
"addressLine1": "string",
|
|
111
|
-
"addressLine2": "string",
|
|
112
|
-
"addressLine3": "string",
|
|
113
|
-
"city": "string",
|
|
114
|
-
"county": "string",
|
|
115
|
-
"district": "string",
|
|
116
|
-
"stateOrRegion": "string",
|
|
117
|
-
"postalCode": "string",
|
|
118
|
-
"countryCode": "string",
|
|
119
|
-
"phone": "string"
|
|
120
|
-
},
|
|
121
|
-
"taxInfo": {
|
|
122
|
-
"taxRegistrationType": "VAT",
|
|
123
|
-
"taxRegistrationNumber": "string",
|
|
124
|
-
"taxRegistrationAddress": {
|
|
125
|
-
"name": "string",
|
|
126
|
-
"attention": "string",
|
|
127
|
-
"addressLine1": "string",
|
|
128
|
-
"addressLine2": "string",
|
|
129
|
-
"addressLine3": "string",
|
|
130
|
-
"city": "string",
|
|
131
|
-
"county": "string",
|
|
132
|
-
"district": "string",
|
|
133
|
-
"stateOrRegion": "string",
|
|
134
|
-
"postalCode": "string",
|
|
135
|
-
"countryCode": "string",
|
|
136
|
-
"phone": "string"
|
|
137
|
-
},
|
|
138
|
-
"taxRegistrationMessages": "string"
|
|
139
|
-
}
|
|
140
|
-
},
|
|
141
|
-
"shipFromParty": {
|
|
142
|
-
"partyId": "string",
|
|
143
|
-
"address": {
|
|
144
|
-
"name": "string",
|
|
145
|
-
"attention": "string",
|
|
146
|
-
"addressLine1": "string",
|
|
147
|
-
"addressLine2": "string",
|
|
148
|
-
"addressLine3": "string",
|
|
149
|
-
"city": "string",
|
|
150
|
-
"county": "string",
|
|
151
|
-
"district": "string",
|
|
152
|
-
"stateOrRegion": "string",
|
|
153
|
-
"postalCode": "string",
|
|
154
|
-
"countryCode": "string",
|
|
155
|
-
"phone": "string"
|
|
156
|
-
},
|
|
157
|
-
"taxInfo": {
|
|
158
|
-
"taxRegistrationType": "VAT",
|
|
159
|
-
"taxRegistrationNumber": "string",
|
|
160
|
-
"taxRegistrationAddress": {
|
|
161
|
-
"name": "string",
|
|
162
|
-
"attention": "string",
|
|
163
|
-
"addressLine1": "string",
|
|
164
|
-
"addressLine2": "string",
|
|
165
|
-
"addressLine3": "string",
|
|
166
|
-
"city": "string",
|
|
167
|
-
"county": "string",
|
|
168
|
-
"district": "string",
|
|
169
|
-
"stateOrRegion": "string",
|
|
170
|
-
"postalCode": "string",
|
|
171
|
-
"countryCode": "string",
|
|
172
|
-
"phone": "string"
|
|
173
|
-
},
|
|
174
|
-
"taxRegistrationMessages": "string"
|
|
175
|
-
}
|
|
176
|
-
},
|
|
177
|
-
"itemAcknowledgements": [
|
|
178
|
-
{
|
|
179
|
-
"itemSequenceNumber": "string",
|
|
180
|
-
"buyerProductIdentifier": "string",
|
|
181
|
-
"vendorProductIdentifier": "string",
|
|
182
|
-
"acknowledgedQuantity": {
|
|
183
|
-
"amount": 0,
|
|
184
|
-
"unitOfMeasure": "Each"
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
]
|
|
188
|
-
}
|
|
189
|
-
]
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
Returns:
|
|
193
|
-
ApiResponse:
|
|
194
|
-
"""
|
|
195
|
-
|
|
196
|
-
return await self._request(kwargs.pop("path"), data=kwargs, add_marketplace=False)
|
|
75
|
+
if TYPE_CHECKING:
|
|
76
|
+
@overload
|
|
77
|
+
def __new__(
|
|
78
|
+
cls,
|
|
79
|
+
*args: Any,
|
|
80
|
+
version: Literal[
|
|
81
|
+
VendorDirectFulfillmentOrdersVersion.V_2021_12_28,
|
|
82
|
+
VendorDirectFulfillmentOrdersVersion.LATEST,
|
|
83
|
+
"2021-12-28",
|
|
84
|
+
],
|
|
85
|
+
**kwargs: Any,
|
|
86
|
+
) -> VendorDirectFulfillmentOrdersV20211228: ...
|
|
87
|
+
|
|
88
|
+
@overload
|
|
89
|
+
def __new__(
|
|
90
|
+
cls,
|
|
91
|
+
*args: Any,
|
|
92
|
+
version: Literal[VendorDirectFulfillmentOrdersVersion.V1, "v1"],
|
|
93
|
+
**kwargs: Any,
|
|
94
|
+
) -> VendorDirectFulfillmentOrdersV1: ...
|
|
95
|
+
|
|
96
|
+
@overload
|
|
97
|
+
def __new__(
|
|
98
|
+
cls,
|
|
99
|
+
*args: Any,
|
|
100
|
+
version: None = None,
|
|
101
|
+
**kwargs: Any,
|
|
102
|
+
) -> VendorDirectFulfillmentOrdersV1: ...
|
|
103
|
+
|
|
104
|
+
@overload
|
|
105
|
+
def __new__(
|
|
106
|
+
cls,
|
|
107
|
+
*args: Any,
|
|
108
|
+
version: str | VendorDirectFulfillmentOrdersVersion,
|
|
109
|
+
**kwargs: Any,
|
|
110
|
+
) -> AsyncBaseClient: ...
|
|
111
|
+
|
|
112
|
+
_DISPATCH = True
|
|
113
|
+
|
|
114
|
+
_DEFAULT_VERSION = "v1"
|
|
115
|
+
|
|
116
|
+
_VERSION_MAP = {
|
|
117
|
+
"v1": VendorDirectFulfillmentOrdersV1,
|
|
118
|
+
"2021-12-28": VendorDirectFulfillmentOrdersV20211228,
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
_VERSION_ALIASES = {
|
|
122
|
+
"v1": "v1",
|
|
123
|
+
"2021-12-28": "2021-12-28",
|
|
124
|
+
}
|
sp_api/asyncio/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders_2021_12_28.py
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import urllib.parse
|
|
2
|
+
|
|
3
|
+
from sp_api.base import sp_endpoint, fill_query_params, ApiResponse
|
|
4
|
+
from sp_api.asyncio.base import AsyncBaseClient
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class VendorDirectFulfillmentOrdersV20211228(AsyncBaseClient):
|
|
8
|
+
"""
|
|
9
|
+
VendorDirectFulfillmentOrders SP-API Client
|
|
10
|
+
:link:
|
|
11
|
+
|
|
12
|
+
The Selling Partner API for Direct Fulfillment Orders provides programmatic access to a direct fulfillment vendor's order data.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
@sp_endpoint("/vendor/directFulfillment/orders/2021-12-28/purchaseOrders", method="GET")
|
|
16
|
+
async def get_orders(self, **kwargs) -> ApiResponse:
|
|
17
|
+
"""
|
|
18
|
+
get_orders(self, **kwargs) -> ApiResponse
|
|
19
|
+
|
|
20
|
+
Returns a list of purchase orders created during the time frame that you specify. You define the time frame using the createdAfter and createdBefore parameters. You must use both parameters. You can choose to get only the purchase order numbers by setting the includeDetails parameter to false. In that case, the operation returns a list of purchase order numbers. You can then call the getOrder operation to return the details of a specific order.
|
|
21
|
+
|
|
22
|
+
**Usage Plan:**
|
|
23
|
+
|
|
24
|
+
====================================== ==============
|
|
25
|
+
Rate (requests per second) Burst
|
|
26
|
+
====================================== ==============
|
|
27
|
+
10 10
|
|
28
|
+
====================================== ==============
|
|
29
|
+
|
|
30
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
31
|
+
|
|
32
|
+
Examples:
|
|
33
|
+
literal blocks::
|
|
34
|
+
|
|
35
|
+
await VendorDirectFulfillmentOrdersV20211228().get_orders()
|
|
36
|
+
|
|
37
|
+
Args:
|
|
38
|
+
key shipFromPartyId: object | The vendor warehouse identifier for the fulfillment warehouse. If not specified, the result will contain orders for all warehouses.
|
|
39
|
+
key status: object | Returns only the purchase orders that match the specified status. If not specified, the result will contain orders that match any status.
|
|
40
|
+
key limit: object | The limit to the number of purchase orders returned.
|
|
41
|
+
key createdAfter: object | required Purchase orders that became available after this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
42
|
+
key createdBefore: object | required Purchase orders that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
43
|
+
key sortOrder: object | Sort the list in ascending or descending order by order creation date.
|
|
44
|
+
key nextToken: object | Used for pagination when there are more orders than the specified result size limit. The token value is returned in the previous API call.
|
|
45
|
+
key includeDetails: object | When true, returns the complete purchase order details. Otherwise, only purchase order numbers are returned.
|
|
46
|
+
|
|
47
|
+
Returns:
|
|
48
|
+
ApiResponse
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
return await self._request(kwargs.pop("path"), params=kwargs)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
@sp_endpoint("/vendor/directFulfillment/orders/2021-12-28/purchaseOrders/{}", method="GET")
|
|
55
|
+
async def get_order(self, purchaseOrderNumber, **kwargs) -> ApiResponse:
|
|
56
|
+
"""
|
|
57
|
+
get_order(self, purchaseOrderNumber, **kwargs) -> ApiResponse
|
|
58
|
+
|
|
59
|
+
Returns purchase order information for the purchaseOrderNumber that you specify.
|
|
60
|
+
|
|
61
|
+
**Usage Plan:**
|
|
62
|
+
|
|
63
|
+
====================================== ==============
|
|
64
|
+
Rate (requests per second) Burst
|
|
65
|
+
====================================== ==============
|
|
66
|
+
10 10
|
|
67
|
+
====================================== ==============
|
|
68
|
+
|
|
69
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
70
|
+
|
|
71
|
+
Examples:
|
|
72
|
+
literal blocks::
|
|
73
|
+
|
|
74
|
+
await VendorDirectFulfillmentOrdersV20211228().get_order("value")
|
|
75
|
+
|
|
76
|
+
Args:
|
|
77
|
+
purchaseOrderNumber: object | required The order identifier for the purchase order that you want. Formatting Notes: alpha-numeric code.
|
|
78
|
+
|
|
79
|
+
Returns:
|
|
80
|
+
ApiResponse
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
return await self._request(
|
|
84
|
+
fill_query_params(kwargs.pop("path"), purchaseOrderNumber), params=kwargs
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
@sp_endpoint("/vendor/directFulfillment/orders/2021-12-28/acknowledgements", method="POST")
|
|
88
|
+
async def submit_acknowledgement(self, **kwargs) -> ApiResponse:
|
|
89
|
+
"""
|
|
90
|
+
submit_acknowledgement(self, **kwargs) -> ApiResponse
|
|
91
|
+
|
|
92
|
+
Submits acknowledgements for one or more purchase orders.
|
|
93
|
+
|
|
94
|
+
**Usage Plan:**
|
|
95
|
+
|
|
96
|
+
====================================== ==============
|
|
97
|
+
Rate (requests per second) Burst
|
|
98
|
+
====================================== ==============
|
|
99
|
+
10 10
|
|
100
|
+
====================================== ==============
|
|
101
|
+
|
|
102
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
103
|
+
|
|
104
|
+
Examples:
|
|
105
|
+
literal blocks::
|
|
106
|
+
|
|
107
|
+
await VendorDirectFulfillmentOrdersV20211228().submit_acknowledgement()
|
|
108
|
+
|
|
109
|
+
Args:
|
|
110
|
+
body: SubmitAcknowledgementRequest | required The request body containing the acknowledgement to an order
|
|
111
|
+
|
|
112
|
+
Returns:
|
|
113
|
+
ApiResponse
|
|
114
|
+
"""
|
|
115
|
+
|
|
116
|
+
return await self._request(kwargs.pop("path"), data=kwargs, add_marketplace=False)
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import urllib.parse
|
|
2
|
+
|
|
3
|
+
from sp_api.base import sp_endpoint, fill_query_params, ApiResponse
|
|
4
|
+
from sp_api.asyncio.base import AsyncBaseClient
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class VendorDirectFulfillmentOrdersV1(AsyncBaseClient):
|
|
8
|
+
"""
|
|
9
|
+
VendorDirectFulfillmentOrders SP-API Client
|
|
10
|
+
:link:
|
|
11
|
+
|
|
12
|
+
The Selling Partner API for Direct Fulfillment Orders provides programmatic access to a direct fulfillment vendor's order data.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
@sp_endpoint("/vendor/directFulfillment/orders/v1/purchaseOrders", method="GET")
|
|
16
|
+
async def get_orders(self, **kwargs) -> ApiResponse:
|
|
17
|
+
"""
|
|
18
|
+
get_orders(self, **kwargs) -> ApiResponse
|
|
19
|
+
|
|
20
|
+
Returns a list of purchase orders created during the time frame that you specify. You define the time frame using the createdAfter and createdBefore parameters. You must use both parameters. You can choose to get only the purchase order numbers by setting the includeDetails parameter to false. In that case, the operation returns a list of purchase order numbers. You can then call the getOrder operation to return the details of a specific order.
|
|
21
|
+
|
|
22
|
+
**Usage Plan:**
|
|
23
|
+
|
|
24
|
+
====================================== ==============
|
|
25
|
+
Rate (requests per second) Burst
|
|
26
|
+
====================================== ==============
|
|
27
|
+
10 10
|
|
28
|
+
====================================== ==============
|
|
29
|
+
|
|
30
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
31
|
+
|
|
32
|
+
Examples:
|
|
33
|
+
literal blocks::
|
|
34
|
+
|
|
35
|
+
await VendorDirectFulfillmentOrdersV1().get_orders()
|
|
36
|
+
|
|
37
|
+
Args:
|
|
38
|
+
key shipFromPartyId: object | The vendor warehouse identifier for the fulfillment warehouse. If not specified, the result will contain orders for all warehouses.
|
|
39
|
+
key status: object | Returns only the purchase orders that match the specified status. If not specified, the result will contain orders that match any status.
|
|
40
|
+
key limit: object | The limit to the number of purchase orders returned.
|
|
41
|
+
key createdAfter: object | required Purchase orders that became available after this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
42
|
+
key createdBefore: object | required Purchase orders that became available before this date and time will be included in the result. Must be in ISO-8601 date/time format.
|
|
43
|
+
key sortOrder: object | Sort the list in ascending or descending order by order creation date.
|
|
44
|
+
key nextToken: object | Used for pagination when there are more orders than the specified result size limit. The token value is returned in the previous API call.
|
|
45
|
+
key includeDetails: object | When true, returns the complete purchase order details. Otherwise, only purchase order numbers are returned.
|
|
46
|
+
|
|
47
|
+
Returns:
|
|
48
|
+
ApiResponse
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
return await self._request(kwargs.pop("path"), params=kwargs)
|
|
52
|
+
|
|
53
|
+
@sp_endpoint("/vendor/directFulfillment/orders/v1/purchaseOrders/{}", method="GET")
|
|
54
|
+
async def get_order(self, purchaseOrderNumber, **kwargs) -> ApiResponse:
|
|
55
|
+
"""
|
|
56
|
+
get_order(self, purchaseOrderNumber, **kwargs) -> ApiResponse
|
|
57
|
+
|
|
58
|
+
Returns purchase order information for the purchaseOrderNumber that you specify.
|
|
59
|
+
|
|
60
|
+
**Usage Plan:**
|
|
61
|
+
|
|
62
|
+
====================================== ==============
|
|
63
|
+
Rate (requests per second) Burst
|
|
64
|
+
====================================== ==============
|
|
65
|
+
10 10
|
|
66
|
+
====================================== ==============
|
|
67
|
+
|
|
68
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
69
|
+
|
|
70
|
+
Examples:
|
|
71
|
+
literal blocks::
|
|
72
|
+
|
|
73
|
+
await VendorDirectFulfillmentOrdersV1().get_order("value")
|
|
74
|
+
|
|
75
|
+
Args:
|
|
76
|
+
purchaseOrderNumber: object | required The order identifier for the purchase order that you want. Formatting Notes: alpha-numeric code.
|
|
77
|
+
|
|
78
|
+
Returns:
|
|
79
|
+
ApiResponse
|
|
80
|
+
"""
|
|
81
|
+
|
|
82
|
+
return await self._request(
|
|
83
|
+
fill_query_params(kwargs.pop("path"), purchaseOrderNumber), params=kwargs
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
@sp_endpoint("/vendor/directFulfillment/orders/v1/acknowledgements", method="POST")
|
|
87
|
+
async def submit_acknowledgement(self, **kwargs) -> ApiResponse:
|
|
88
|
+
"""
|
|
89
|
+
submit_acknowledgement(self, **kwargs) -> ApiResponse
|
|
90
|
+
|
|
91
|
+
Submits acknowledgements for one or more purchase orders.
|
|
92
|
+
|
|
93
|
+
**Usage Plan:**
|
|
94
|
+
|
|
95
|
+
====================================== ==============
|
|
96
|
+
Rate (requests per second) Burst
|
|
97
|
+
====================================== ==============
|
|
98
|
+
10 10
|
|
99
|
+
====================================== ==============
|
|
100
|
+
|
|
101
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
102
|
+
|
|
103
|
+
Examples:
|
|
104
|
+
literal blocks::
|
|
105
|
+
|
|
106
|
+
await VendorDirectFulfillmentOrdersV1().submit_acknowledgement()
|
|
107
|
+
|
|
108
|
+
Args:
|
|
109
|
+
body: SubmitAcknowledgementRequest | required The request body containing the acknowledgement to an order.
|
|
110
|
+
|
|
111
|
+
Returns:
|
|
112
|
+
ApiResponse
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
return await self._request(kwargs.pop("path"), data=kwargs, add_marketplace=False)
|