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,25 +15,30 @@ class Messaging(Client):
|
|
|
15
15
|
def get_messaging_actions_for_order(self, order_id, **kwargs) -> ApiResponse:
|
|
16
16
|
"""
|
|
17
17
|
get_messaging_actions_for_order(self, order_id, **kwargs) -> ApiResponse
|
|
18
|
-
|
|
18
|
+
|
|
19
19
|
Returns a list of message types that are available for an order that you specify. A message type is represented by an actions object, which contains a path and query parameter(s). You can use the path and parameter(s) to call an operation that sends a message.
|
|
20
|
-
|
|
20
|
+
|
|
21
21
|
**Usage Plan:**
|
|
22
|
-
|
|
22
|
+
|
|
23
23
|
====================================== ==============
|
|
24
24
|
Rate (requests per second) Burst
|
|
25
25
|
====================================== ==============
|
|
26
26
|
1 5
|
|
27
27
|
====================================== ==============
|
|
28
|
-
|
|
28
|
+
|
|
29
29
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
30
|
-
|
|
30
|
+
|
|
31
|
+
Examples:
|
|
32
|
+
literal blocks::
|
|
33
|
+
|
|
34
|
+
Messaging().get_messaging_actions_for_order("value")
|
|
35
|
+
|
|
31
36
|
Args:
|
|
32
|
-
|
|
33
|
-
key marketplaceIds:
|
|
34
|
-
|
|
37
|
+
amazonOrderId: object | required An Amazon order identifier. This specifies the order for which you want a list of available message types.
|
|
38
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
39
|
+
|
|
35
40
|
Returns:
|
|
36
|
-
ApiResponse
|
|
41
|
+
ApiResponse
|
|
37
42
|
"""
|
|
38
43
|
|
|
39
44
|
return self._request(
|
|
@@ -46,33 +51,31 @@ class Messaging(Client):
|
|
|
46
51
|
def confirm_customization_details(self, order_id, **kwargs) -> ApiResponse:
|
|
47
52
|
"""
|
|
48
53
|
confirm_customization_details(self, order_id, **kwargs) -> ApiResponse
|
|
49
|
-
|
|
54
|
+
|
|
50
55
|
Sends a message asking a buyer to provide or verify customization details such as name spelling, images, initials, etc.
|
|
51
|
-
|
|
56
|
+
|
|
52
57
|
**Usage Plan:**
|
|
53
|
-
|
|
58
|
+
|
|
54
59
|
====================================== ==============
|
|
55
60
|
Rate (requests per second) Burst
|
|
56
61
|
====================================== ==============
|
|
57
62
|
1 5
|
|
58
63
|
====================================== ==============
|
|
59
|
-
|
|
64
|
+
|
|
60
65
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
61
|
-
|
|
66
|
+
|
|
67
|
+
Examples:
|
|
68
|
+
literal blocks::
|
|
69
|
+
|
|
70
|
+
Messaging().confirm_customization_details("value")
|
|
71
|
+
|
|
62
72
|
Args:
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
{
|
|
68
|
-
"uploadDestinationId": "string",
|
|
69
|
-
"fileName": "string"
|
|
70
|
-
}
|
|
71
|
-
]
|
|
72
|
-
}
|
|
73
|
-
|
|
73
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
74
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
75
|
+
body: CreateConfirmCustomizationDetailsRequest | required This contains the message body for a message.
|
|
76
|
+
|
|
74
77
|
Returns:
|
|
75
|
-
ApiResponse
|
|
78
|
+
ApiResponse
|
|
76
79
|
"""
|
|
77
80
|
|
|
78
81
|
return self._request(
|
|
@@ -90,28 +93,31 @@ class Messaging(Client):
|
|
|
90
93
|
def create_confirm_delivery_details(self, order_id, **kwargs) -> ApiResponse:
|
|
91
94
|
"""
|
|
92
95
|
create_confirm_delivery_details(self, order_id, **kwargs) -> ApiResponse
|
|
93
|
-
|
|
96
|
+
|
|
94
97
|
Sends a message to a buyer to arrange a delivery or to confirm contact information for making a delivery.
|
|
95
|
-
|
|
98
|
+
|
|
96
99
|
**Usage Plan:**
|
|
97
|
-
|
|
100
|
+
|
|
98
101
|
====================================== ==============
|
|
99
102
|
Rate (requests per second) Burst
|
|
100
103
|
====================================== ==============
|
|
101
104
|
1 5
|
|
102
105
|
====================================== ==============
|
|
103
|
-
|
|
106
|
+
|
|
104
107
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
105
|
-
|
|
108
|
+
|
|
109
|
+
Examples:
|
|
110
|
+
literal blocks::
|
|
111
|
+
|
|
112
|
+
Messaging().create_confirm_delivery_details("value")
|
|
113
|
+
|
|
106
114
|
Args:
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
115
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
116
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
117
|
+
body: CreateConfirmDeliveryDetailsRequest | required This contains the message body for a message.
|
|
118
|
+
|
|
113
119
|
Returns:
|
|
114
|
-
ApiResponse
|
|
120
|
+
ApiResponse
|
|
115
121
|
"""
|
|
116
122
|
|
|
117
123
|
return self._request(
|
|
@@ -127,33 +133,31 @@ class Messaging(Client):
|
|
|
127
133
|
def create_legal_disclosure(self, order_id, **kwargs) -> ApiResponse:
|
|
128
134
|
"""
|
|
129
135
|
create_legal_disclosure(self, order_id, **kwargs) -> ApiResponse
|
|
130
|
-
|
|
136
|
+
|
|
131
137
|
Sends a critical message that contains documents that a seller is legally obligated to provide to the buyer. This message should only be used to deliver documents that are required by law.
|
|
132
|
-
|
|
138
|
+
|
|
133
139
|
**Usage Plan:**
|
|
134
|
-
|
|
140
|
+
|
|
135
141
|
====================================== ==============
|
|
136
142
|
Rate (requests per second) Burst
|
|
137
143
|
====================================== ==============
|
|
138
144
|
1 5
|
|
139
145
|
====================================== ==============
|
|
140
|
-
|
|
146
|
+
|
|
141
147
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
142
|
-
|
|
148
|
+
|
|
149
|
+
Examples:
|
|
150
|
+
literal blocks::
|
|
151
|
+
|
|
152
|
+
Messaging().create_legal_disclosure("value")
|
|
153
|
+
|
|
143
154
|
Args:
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
"uploadDestinationId": "string",
|
|
149
|
-
"fileName": "string"
|
|
150
|
-
}
|
|
151
|
-
]
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
156
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
157
|
+
body: CreateLegalDisclosureRequest | required This contains the message body for a message.
|
|
158
|
+
|
|
155
159
|
Returns:
|
|
156
|
-
ApiResponse
|
|
160
|
+
ApiResponse
|
|
157
161
|
"""
|
|
158
162
|
|
|
159
163
|
return self._request(
|
|
@@ -171,24 +175,20 @@ class Messaging(Client):
|
|
|
171
175
|
def create_negative_feedback_removal(self, order_id, **kwargs) -> ApiResponse:
|
|
172
176
|
"""
|
|
173
177
|
create_negative_feedback_removal(self, order_id, **kwargs) -> ApiResponse
|
|
174
|
-
|
|
178
|
+
|
|
175
179
|
Sends a non-critical message that asks a buyer to remove their negative feedback. This message should only be sent after the seller has resolved the buyer's problem.
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
1 5
|
|
183
|
-
====================================== ==============
|
|
184
|
-
|
|
185
|
-
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
186
|
-
|
|
180
|
+
|
|
181
|
+
Examples:
|
|
182
|
+
literal blocks::
|
|
183
|
+
|
|
184
|
+
Messaging().create_negative_feedback_removal("value")
|
|
185
|
+
|
|
187
186
|
Args:
|
|
188
|
-
order_id:
|
|
189
|
-
|
|
187
|
+
order_id: | required
|
|
188
|
+
**kwargs:
|
|
189
|
+
|
|
190
190
|
Returns:
|
|
191
|
-
ApiResponse
|
|
191
|
+
ApiResponse
|
|
192
192
|
"""
|
|
193
193
|
|
|
194
194
|
return self._request(
|
|
@@ -204,27 +204,31 @@ class Messaging(Client):
|
|
|
204
204
|
def create_confirm_order_details(self, order_id, **kwargs) -> ApiResponse:
|
|
205
205
|
"""
|
|
206
206
|
create_confirm_order_details(self, order_id, **kwargs) -> ApiResponse
|
|
207
|
-
|
|
207
|
+
|
|
208
208
|
Sends a message to ask a buyer an order-related question prior to shipping their order.
|
|
209
|
-
|
|
209
|
+
|
|
210
210
|
**Usage Plan:**
|
|
211
|
-
|
|
211
|
+
|
|
212
212
|
====================================== ==============
|
|
213
213
|
Rate (requests per second) Burst
|
|
214
214
|
====================================== ==============
|
|
215
215
|
1 5
|
|
216
216
|
====================================== ==============
|
|
217
|
-
|
|
217
|
+
|
|
218
218
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
219
|
-
|
|
219
|
+
|
|
220
|
+
Examples:
|
|
221
|
+
literal blocks::
|
|
222
|
+
|
|
223
|
+
Messaging().create_confirm_order_details("value")
|
|
224
|
+
|
|
220
225
|
Args:
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
227
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
228
|
+
body: CreateConfirmOrderDetailsRequest | required This contains the message body for a message.
|
|
229
|
+
|
|
226
230
|
Returns:
|
|
227
|
-
ApiResponse
|
|
231
|
+
ApiResponse
|
|
228
232
|
"""
|
|
229
233
|
|
|
230
234
|
return self._request(
|
|
@@ -242,28 +246,31 @@ class Messaging(Client):
|
|
|
242
246
|
def create_confirm_service_details(self, order_id, **kwargs) -> ApiResponse:
|
|
243
247
|
"""
|
|
244
248
|
create_confirm_service_details(self, order_id, **kwargs) -> ApiResponse
|
|
245
|
-
|
|
249
|
+
|
|
246
250
|
Sends a message to contact a Home Service customer to arrange a service call or to gather information prior to a service call.
|
|
247
|
-
|
|
251
|
+
|
|
248
252
|
**Usage Plan:**
|
|
249
|
-
|
|
253
|
+
|
|
250
254
|
====================================== ==============
|
|
251
255
|
Rate (requests per second) Burst
|
|
252
256
|
====================================== ==============
|
|
253
257
|
1 5
|
|
254
258
|
====================================== ==============
|
|
255
|
-
|
|
259
|
+
|
|
256
260
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
257
|
-
|
|
261
|
+
|
|
262
|
+
Examples:
|
|
263
|
+
literal blocks::
|
|
264
|
+
|
|
265
|
+
Messaging().create_confirm_service_details("value")
|
|
266
|
+
|
|
258
267
|
Args:
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
268
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
269
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
270
|
+
body: CreateConfirmServiceDetailsRequest | required This contains the message body for a message.
|
|
271
|
+
|
|
265
272
|
Returns:
|
|
266
|
-
ApiResponse
|
|
273
|
+
ApiResponse
|
|
267
274
|
"""
|
|
268
275
|
|
|
269
276
|
return self._request(
|
|
@@ -279,33 +286,20 @@ class Messaging(Client):
|
|
|
279
286
|
def create_amazon_motors(self, order_id, **kwargs) -> ApiResponse:
|
|
280
287
|
"""
|
|
281
288
|
create_amazon_motors(self, order_id, **kwargs) -> ApiResponse
|
|
282
|
-
|
|
289
|
+
|
|
283
290
|
Sends a message to a buyer to provide details about an Amazon Motors order. This message can only be sent by Amazon Motors sellers.
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
1 5
|
|
291
|
-
====================================== ==============
|
|
292
|
-
|
|
293
|
-
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
294
|
-
|
|
291
|
+
|
|
292
|
+
Examples:
|
|
293
|
+
literal blocks::
|
|
294
|
+
|
|
295
|
+
Messaging().create_amazon_motors("value")
|
|
296
|
+
|
|
295
297
|
Args:
|
|
296
|
-
order_id:
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
{
|
|
300
|
-
"uploadDestinationId": "string",
|
|
301
|
-
"fileName": "string"
|
|
302
|
-
}
|
|
303
|
-
]
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
|
|
298
|
+
order_id: | required
|
|
299
|
+
**kwargs:
|
|
300
|
+
|
|
307
301
|
Returns:
|
|
308
|
-
ApiResponse
|
|
302
|
+
ApiResponse
|
|
309
303
|
"""
|
|
310
304
|
|
|
311
305
|
return self._request(
|
|
@@ -321,36 +315,31 @@ class Messaging(Client):
|
|
|
321
315
|
def create_warranty(self, order_id, **kwargs) -> ApiResponse:
|
|
322
316
|
"""
|
|
323
317
|
create_warranty(self, order_id, **kwargs) -> ApiResponse
|
|
324
|
-
|
|
318
|
+
|
|
325
319
|
Sends a message to a buyer to provide details about warranty information on a purchase in their order.
|
|
326
|
-
|
|
320
|
+
|
|
327
321
|
**Usage Plan:**
|
|
328
|
-
|
|
329
|
-
|
|
322
|
+
|
|
330
323
|
====================================== ==============
|
|
331
324
|
Rate (requests per second) Burst
|
|
332
325
|
====================================== ==============
|
|
333
326
|
1 5
|
|
334
327
|
====================================== ==============
|
|
335
|
-
|
|
328
|
+
|
|
336
329
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
337
|
-
|
|
330
|
+
|
|
331
|
+
Examples:
|
|
332
|
+
literal blocks::
|
|
333
|
+
|
|
334
|
+
Messaging().create_warranty("value")
|
|
335
|
+
|
|
338
336
|
Args:
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
"uploadDestinationId": "string",
|
|
344
|
-
"fileName": "string"
|
|
345
|
-
}
|
|
346
|
-
],
|
|
347
|
-
"coverageStartDate": "2019-08-24T14:15:22Z",
|
|
348
|
-
"coverageEndDate": "2019-08-24T14:15:22Z"
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
|
|
337
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
338
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
339
|
+
body: CreateWarrantyRequest | required This contains the message body for a message.
|
|
340
|
+
|
|
352
341
|
Returns:
|
|
353
|
-
ApiResponse
|
|
342
|
+
ApiResponse
|
|
354
343
|
"""
|
|
355
344
|
|
|
356
345
|
return self._request(
|
|
@@ -366,22 +355,30 @@ class Messaging(Client):
|
|
|
366
355
|
def get_attributes(self, order_id, **kwargs) -> ApiResponse:
|
|
367
356
|
"""
|
|
368
357
|
get_attributes(self, order_id, **kwargs) -> ApiResponse
|
|
369
|
-
|
|
358
|
+
|
|
370
359
|
Returns a response containing attributes related to an order. This includes buyer preferences.
|
|
371
|
-
|
|
360
|
+
|
|
372
361
|
**Usage Plan:**
|
|
373
|
-
|
|
362
|
+
|
|
374
363
|
====================================== ==============
|
|
375
364
|
Rate (requests per second) Burst
|
|
376
365
|
====================================== ==============
|
|
377
366
|
1 5
|
|
378
367
|
====================================== ==============
|
|
379
|
-
|
|
368
|
+
|
|
369
|
+
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
370
|
+
|
|
371
|
+
Examples:
|
|
372
|
+
literal blocks::
|
|
373
|
+
|
|
374
|
+
Messaging().get_attributes("value")
|
|
375
|
+
|
|
380
376
|
Args:
|
|
381
|
-
|
|
382
|
-
|
|
377
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
378
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
379
|
+
|
|
383
380
|
Returns:
|
|
384
|
-
ApiResponse
|
|
381
|
+
ApiResponse
|
|
385
382
|
"""
|
|
386
383
|
|
|
387
384
|
return self._request(
|
|
@@ -392,34 +389,31 @@ class Messaging(Client):
|
|
|
392
389
|
def create_digital_access_key(self, order_id, **kwargs) -> ApiResponse:
|
|
393
390
|
"""
|
|
394
391
|
create_digital_access_key(self, order_id, **kwargs) -> ApiResponse
|
|
395
|
-
|
|
396
|
-
Sends a
|
|
397
|
-
|
|
392
|
+
|
|
393
|
+
Sends a buyer a message to share a digital access key that is required to utilize digital content in their order.
|
|
394
|
+
|
|
398
395
|
**Usage Plan:**
|
|
399
|
-
|
|
400
|
-
|
|
396
|
+
|
|
401
397
|
====================================== ==============
|
|
402
398
|
Rate (requests per second) Burst
|
|
403
399
|
====================================== ==============
|
|
404
400
|
1 5
|
|
405
401
|
====================================== ==============
|
|
406
|
-
|
|
402
|
+
|
|
407
403
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
408
|
-
|
|
404
|
+
|
|
405
|
+
Examples:
|
|
406
|
+
literal blocks::
|
|
407
|
+
|
|
408
|
+
Messaging().create_digital_access_key("value")
|
|
409
|
+
|
|
409
410
|
Args:
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
{
|
|
415
|
-
"uploadDestinationId": "string",
|
|
416
|
-
"fileName": "string"
|
|
417
|
-
}
|
|
418
|
-
]
|
|
419
|
-
}
|
|
420
|
-
|
|
411
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
412
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
413
|
+
body: CreateDigitalAccessKeyRequest | required This contains the message body for a message.
|
|
414
|
+
|
|
421
415
|
Returns:
|
|
422
|
-
ApiResponse
|
|
416
|
+
ApiResponse
|
|
423
417
|
"""
|
|
424
418
|
|
|
425
419
|
return self._request(
|
|
@@ -435,27 +429,31 @@ class Messaging(Client):
|
|
|
435
429
|
def create_unexpected_problem(self, order_id, **kwargs) -> ApiResponse:
|
|
436
430
|
"""
|
|
437
431
|
create_unexpected_problem(self, order_id, **kwargs) -> ApiResponse
|
|
438
|
-
|
|
432
|
+
|
|
439
433
|
Sends a critical message to a buyer that an unexpected problem was encountered affecting the completion of the order.
|
|
440
|
-
|
|
434
|
+
|
|
441
435
|
**Usage Plan:**
|
|
442
|
-
|
|
436
|
+
|
|
443
437
|
====================================== ==============
|
|
444
438
|
Rate (requests per second) Burst
|
|
445
439
|
====================================== ==============
|
|
446
440
|
1 5
|
|
447
441
|
====================================== ==============
|
|
448
|
-
|
|
442
|
+
|
|
449
443
|
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
450
|
-
|
|
444
|
+
|
|
445
|
+
Examples:
|
|
446
|
+
literal blocks::
|
|
447
|
+
|
|
448
|
+
Messaging().create_unexpected_problem("value")
|
|
449
|
+
|
|
451
450
|
Args:
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
451
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
452
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
453
|
+
body: CreateUnexpectedProblemRequest | required This contains the message body for a message.
|
|
454
|
+
|
|
457
455
|
Returns:
|
|
458
|
-
ApiResponse
|
|
456
|
+
ApiResponse
|
|
459
457
|
"""
|
|
460
458
|
|
|
461
459
|
return self._request(
|
|
@@ -471,33 +469,21 @@ class Messaging(Client):
|
|
|
471
469
|
def send_invoice(self, order_id, **kwargs) -> ApiResponse:
|
|
472
470
|
"""
|
|
473
471
|
send_invoice(self, order_id, **kwargs) -> ApiResponse
|
|
474
|
-
|
|
472
|
+
|
|
475
473
|
Sends a message providing the buyer an invoice
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
1 5
|
|
483
|
-
====================================== ==============
|
|
484
|
-
|
|
485
|
-
For more information, see "Usage Plans and Rate Limits" in the Selling Partner API documentation.
|
|
486
|
-
|
|
474
|
+
|
|
475
|
+
Examples:
|
|
476
|
+
literal blocks::
|
|
477
|
+
|
|
478
|
+
Messaging().send_invoice("value")
|
|
479
|
+
|
|
487
480
|
Args:
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
"uploadDestinationId": "string",
|
|
493
|
-
"fileName": "string"
|
|
494
|
-
}
|
|
495
|
-
]
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
|
|
481
|
+
amazonOrderId: object | required An Amazon order identifier. This identifies the order for which a message is sent.
|
|
482
|
+
key marketplaceIds: object | required A marketplace identifier. This identifies the marketplace in which the order was placed. You can only specify one marketplace.
|
|
483
|
+
body: InvoiceRequest | required This contains the message body for a message.
|
|
484
|
+
|
|
499
485
|
Returns:
|
|
500
|
-
ApiResponse
|
|
486
|
+
ApiResponse
|
|
501
487
|
"""
|
|
502
488
|
|
|
503
489
|
return self._request(
|