python-amazon-sp-api 1.7.5__py3-none-any.whl → 2.0.10__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-1.7.5.data → python_amazon_sp_api-2.0.10.data}/scripts/make_endpoint +2 -2
- {python_amazon_sp_api-1.7.5.dist-info → python_amazon_sp_api-2.0.10.dist-info}/METADATA +58 -8
- python_amazon_sp_api-2.0.10.dist-info/RECORD +253 -0
- {python_amazon_sp_api-1.7.5.dist-info → python_amazon_sp_api-2.0.10.dist-info}/WHEEL +1 -1
- {python_amazon_sp_api-1.7.5.dist-info → python_amazon_sp_api-2.0.10.dist-info}/top_level.txt +0 -1
- sp_api/__version__.py +1 -1
- sp_api/api/__init__.py +48 -41
- sp_api/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu.py +82 -76
- sp_api/api/aplus_content/aplus_content.py +76 -45
- sp_api/api/application_integrations/application_integrations.py +118 -0
- sp_api/api/application_management/application_management.py +6 -7
- sp_api/api/authorization/authorization.py +5 -5
- sp_api/api/catalog/catalog.py +9 -10
- sp_api/api/catalog_items/catalog_items.py +10 -13
- sp_api/api/customer_feedback/customer_feedback.py +110 -0
- sp_api/api/data_kiosk/data_kiosk.py +59 -39
- sp_api/api/easy_ship/easy_ship.py +190 -0
- sp_api/api/external_fulfillment/external_fulfillment.py +706 -0
- sp_api/api/fba_inbound_eligibility/fba_inbound_eligibility.py +23 -13
- sp_api/api/fba_small_and_light/fba_small_and_light.py +46 -20
- sp_api/api/feeds/feeds.py +60 -39
- sp_api/api/finances/finances.py +40 -9
- sp_api/api/fulfillment_inbound/fulfillment_inbound.py +844 -619
- sp_api/api/fulfillment_outbound/fulfillment_outbound.py +63 -57
- sp_api/api/inventories/inventories.py +13 -11
- sp_api/api/listings_items/listings_items.py +38 -25
- sp_api/api/listings_restrictions/listings_restrictions.py +6 -7
- sp_api/api/merchant_fulfillment/merchant_fulfillment.py +49 -36
- sp_api/api/messaging/messaging.py +129 -25
- sp_api/api/notifications/notifications.py +85 -45
- sp_api/api/orders/orders.py +123 -38
- sp_api/api/orders/orders_2026_01_01.py +54 -0
- sp_api/api/product_fees/product_fees.py +75 -67
- sp_api/api/product_type_definitions/product_type_definitions.py +9 -10
- sp_api/api/products/products.py +177 -53
- sp_api/api/products/products_definitions.py +11 -82
- sp_api/api/replenishment/replenishment.py +13 -11
- sp_api/api/reports/reports.py +113 -95
- sp_api/api/sales/sales.py +23 -13
- sp_api/api/sellers/sellers.py +3 -3
- sp_api/api/services/services.py +41 -30
- sp_api/api/shipping/shipping.py +39 -37
- sp_api/api/shipping/shippingV2.py +46 -30
- sp_api/api/solicitations/solicitations.py +20 -11
- sp_api/api/supply_sources/supply_sources.py +45 -37
- sp_api/api/tokens/tokens.py +4 -6
- sp_api/api/upload/upload.py +10 -8
- sp_api/api/vendor_direct_fulfillment_inventory/vendor_direct_fulfillment_inventory.py +10 -6
- sp_api/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders.py +12 -14
- sp_api/api/vendor_direct_fulfillment_payments/vendor_direct_fulfillment_payments.py +4 -6
- sp_api/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping.py +42 -37
- sp_api/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions.py +8 -6
- sp_api/api/vendor_invoices/vendor_invoices.py +6 -4
- sp_api/api/vendor_orders/vendor_orders.py +16 -19
- sp_api/api/vendor_shipments/vendor_shipments.py +91 -262
- sp_api/api/vendor_transaction_status/vendor_transaction_status.py +6 -6
- sp_api/asyncio/api/__init__.py +167 -0
- sp_api/asyncio/api/amazon_warehousing_and_distribu/__init__.py +9 -0
- sp_api/asyncio/api/amazon_warehousing_and_distribu/amazon_warehousing_and_distribu.py +130 -0
- sp_api/asyncio/api/aplus_content/__init__.py +5 -0
- sp_api/asyncio/api/aplus_content/aplus_content.py +330 -0
- sp_api/asyncio/api/application_integrations/__init__.py +5 -0
- sp_api/asyncio/api/application_integrations/application_integrations.py +119 -0
- sp_api/asyncio/api/application_management/__init__.py +5 -0
- sp_api/asyncio/api/application_management/application_management.py +36 -0
- sp_api/asyncio/api/authorization/__init__.py +5 -0
- sp_api/asyncio/api/authorization/authorization.py +54 -0
- sp_api/asyncio/api/catalog/__init__.py +5 -0
- sp_api/asyncio/api/catalog/catalog.py +111 -0
- sp_api/asyncio/api/catalog_items/__init__.py +6 -0
- sp_api/asyncio/api/catalog_items/catalog_items.py +93 -0
- sp_api/asyncio/api/clients/__init__.py +1 -0
- sp_api/asyncio/api/customer_feedback/__init__.py +5 -0
- sp_api/asyncio/api/customer_feedback/customer_feedback.py +111 -0
- sp_api/asyncio/api/data_kiosk/__init__.py +5 -0
- sp_api/asyncio/api/data_kiosk/data_kiosk.py +236 -0
- sp_api/asyncio/api/easy_ship/__init__.py +5 -0
- sp_api/asyncio/api/easy_ship/easy_ship.py +191 -0
- sp_api/asyncio/api/external_fulfillment/__init__.py +5 -0
- sp_api/asyncio/api/external_fulfillment/external_fulfillment.py +706 -0
- sp_api/asyncio/api/fba_inbound_eligibility/__init__.py +5 -0
- sp_api/asyncio/api/fba_inbound_eligibility/fba_inbound_eligibility.py +96 -0
- sp_api/asyncio/api/fba_small_and_light/__init__.py +5 -0
- sp_api/asyncio/api/fba_small_and_light/fba_small_and_light.py +213 -0
- sp_api/asyncio/api/feeds/feeds.py +260 -0
- sp_api/asyncio/api/finances/finances.py +100 -0
- sp_api/asyncio/api/fulfillment_inbound/fulfillment_inbound.py +1798 -0
- sp_api/asyncio/api/fulfillment_outbound/fulfillment_outbound.py +736 -0
- sp_api/asyncio/api/inventories/inventories.py +74 -0
- sp_api/asyncio/api/listings_items/__init__.py +0 -0
- sp_api/asyncio/api/listings_items/listings_items.py +170 -0
- sp_api/asyncio/api/listings_restrictions/__init__.py +0 -0
- sp_api/asyncio/api/listings_restrictions/listings_restrictions.py +36 -0
- sp_api/asyncio/api/merchant_fulfillment/__init__.py +0 -0
- sp_api/asyncio/api/merchant_fulfillment/merchant_fulfillment.py +384 -0
- sp_api/asyncio/api/messaging/__init__.py +0 -0
- sp_api/asyncio/api/messaging/messaging.py +511 -0
- sp_api/asyncio/api/models/__init__.py +4 -0
- sp_api/asyncio/api/notifications/__init__.py +0 -0
- sp_api/asyncio/api/notifications/notifications.py +295 -0
- sp_api/asyncio/api/orders/__init__.py +0 -0
- sp_api/asyncio/api/orders/orders.py +412 -0
- sp_api/asyncio/api/orders/orders_2026_01_01.py +40 -0
- sp_api/asyncio/api/overrides/__init__.py +1 -0
- sp_api/asyncio/api/product_fees/__init__.py +0 -0
- sp_api/asyncio/api/product_fees/product_fees.py +194 -0
- sp_api/asyncio/api/product_type_definitions/__init__.py +0 -0
- sp_api/asyncio/api/product_type_definitions/product_type_definitions.py +75 -0
- sp_api/asyncio/api/products/__init__.py +0 -0
- sp_api/asyncio/api/products/products.py +405 -0
- sp_api/asyncio/api/products/products_definitions.py +11 -0
- sp_api/asyncio/api/replenishment/__init__.py +0 -0
- sp_api/asyncio/api/replenishment/replenishment.py +121 -0
- sp_api/asyncio/api/reports/__init__.py +0 -0
- sp_api/asyncio/api/reports/reports.py +439 -0
- sp_api/asyncio/api/sales/__init__.py +0 -0
- sp_api/asyncio/api/sales/sales.py +93 -0
- sp_api/asyncio/api/sellers/__init__.py +0 -0
- sp_api/asyncio/api/sellers/sellers.py +70 -0
- sp_api/asyncio/api/services/__init__.py +0 -0
- sp_api/asyncio/api/services/services.py +218 -0
- sp_api/asyncio/api/shipping/__init__.py +0 -0
- sp_api/asyncio/api/shipping/shipping.py +459 -0
- sp_api/asyncio/api/shipping/shippingV2.py +651 -0
- sp_api/asyncio/api/solicitations/__init__.py +0 -0
- sp_api/asyncio/api/solicitations/solicitations.py +78 -0
- sp_api/asyncio/api/supply_sources/__init__.py +0 -0
- sp_api/asyncio/api/supply_sources/supply_sources.py +138 -0
- sp_api/asyncio/api/tokens/__init__.py +0 -0
- sp_api/asyncio/api/tokens/tokens.py +65 -0
- sp_api/asyncio/api/upload/__init__.py +0 -0
- sp_api/asyncio/api/upload/upload.py +18 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_inventory/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_inventory/vendor_direct_fulfillment_inventory.py +64 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_orders/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_orders/vendor_direct_fulfillment_orders.py +196 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_payments/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_payments/vendor_direct_fulfillment_payments.py +254 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_shipping/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_shipping/vendor_direct_fulfillment_shipping.py +627 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_transactions/__init__.py +0 -0
- sp_api/asyncio/api/vendor_direct_fulfillment_transactions/vendor_direct_fulfillment_transactions.py +43 -0
- sp_api/asyncio/api/vendor_invoices/__init__.py +0 -0
- sp_api/asyncio/api/vendor_invoices/vendor_invoices.py +295 -0
- sp_api/asyncio/api/vendor_orders/__init__.py +0 -0
- sp_api/asyncio/api/vendor_orders/vendor_orders.py +210 -0
- sp_api/asyncio/api/vendor_shipments/__init__.py +0 -0
- sp_api/asyncio/api/vendor_shipments/vendor_shipments.py +118 -0
- sp_api/asyncio/api/vendor_transaction_status/__init__.py +0 -0
- sp_api/asyncio/api/vendor_transaction_status/vendor_transaction_status.py +41 -0
- sp_api/asyncio/auth/__init__.py +12 -0
- sp_api/asyncio/auth/access_token_client.py +145 -0
- sp_api/asyncio/auth/exceptions.py +5 -0
- sp_api/asyncio/base/__init__.py +53 -0
- sp_api/asyncio/base/_transport_httpx.py +50 -0
- sp_api/asyncio/base/base_client.py +8 -0
- sp_api/asyncio/base/client.py +169 -0
- sp_api/asyncio/util/__init__.py +29 -0
- sp_api/asyncio/util/key_maker.py +5 -0
- sp_api/asyncio/util/load_all_pages.py +55 -0
- sp_api/asyncio/util/load_date_bound.py +53 -0
- sp_api/asyncio/util/retry.py +88 -0
- sp_api/auth/__init__.py +3 -3
- sp_api/auth/_core.py +39 -0
- sp_api/auth/access_token_client.py +20 -31
- sp_api/auth/access_token_response.py +4 -4
- sp_api/base/ApiResponse.py +5 -4
- sp_api/base/__init__.py +53 -42
- sp_api/base/_core.py +110 -0
- sp_api/base/_transport_httpx.py +39 -0
- sp_api/base/base_client.py +4 -4
- sp_api/base/client.py +131 -112
- sp_api/base/credential_provider.py +41 -34
- sp_api/base/exceptions.py +14 -3
- sp_api/base/feedTypes.py +44 -32
- sp_api/base/fulfillment_channel.py +2 -2
- sp_api/base/helpers.py +17 -16
- sp_api/base/identifiersType.py +8 -8
- sp_api/base/included_data.py +12 -12
- sp_api/base/marketplaces.py +5 -1
- sp_api/base/notifications.py +1 -1
- sp_api/base/processing_status.py +5 -5
- sp_api/base/reportTypes.py +198 -111
- sp_api/base/sales_enum.py +11 -13
- sp_api/util/__init__.py +42 -6
- sp_api/util/key_maker.py +4 -2
- sp_api/util/load_all_pages.py +16 -5
- sp_api/util/load_date_bound.py +28 -13
- sp_api/util/params.py +57 -0
- sp_api/util/product_fees.py +40 -0
- sp_api/util/products_definitions.py +169 -0
- sp_api/util/report_document.py +154 -0
- sp_api/util/retry.py +16 -15
- python_amazon_sp_api-1.7.5.dist-info/RECORD +0 -144
- tests/api/finances/test_finances.py +0 -19
- tests/api/notifications/test_notifications.py +0 -26
- tests/api/orders/test_orders.py +0 -122
- tests/api/product_fees/product_fees.py +0 -49
- tests/api/reports/test_reports.py +0 -127
- tests/client/test_auth.py +0 -59
- tests/client/test_base.py +0 -163
- tests/client/test_credential_provider.py +0 -45
- tests/client/test_helpers.py +0 -142
- {python_amazon_sp_api-1.7.5.dist-info → python_amazon_sp_api-2.0.10.dist-info/licenses}/LICENSE +0 -0
- {tests → sp_api/api/application_integrations}/__init__.py +0 -0
- {tests/api → sp_api/api/customer_feedback}/__init__.py +0 -0
- {tests/api/finances → sp_api/api/easy_ship}/__init__.py +0 -0
- {tests/api/notifications → sp_api/api/external_fulfillment}/__init__.py +0 -0
- {tests/api/orders → sp_api/asyncio}/__init__.py +0 -0
- {tests/api/product_fees → sp_api/asyncio/api/feeds}/__init__.py +0 -0
- {tests/api/reports → sp_api/asyncio/api/finances}/__init__.py +0 -0
- {tests/api/sellers → sp_api/asyncio/api/fulfillment_inbound}/__init__.py +0 -0
- {tests/client → sp_api/asyncio/api/fulfillment_outbound}/__init__.py +0 -0
- /tests/api/sellers/test_sellers.py → /sp_api/asyncio/api/inventories/__init__.py +0 -0
|
@@ -0,0 +1,254 @@
|
|
|
1
|
+
import urllib.parse
|
|
2
|
+
|
|
3
|
+
from sp_api.base import Client, sp_endpoint, fill_query_params, ApiResponse
|
|
4
|
+
from sp_api.asyncio.base import AsyncBaseClient
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class VendorDirectFulfillmentPayments(AsyncBaseClient):
|
|
8
|
+
"""
|
|
9
|
+
VendorDirectFulfillmentPayments SP-API Client
|
|
10
|
+
:link:
|
|
11
|
+
|
|
12
|
+
The Selling Partner API for Direct Fulfillment Payments provides programmatic access to a direct fulfillment vendor's invoice data.
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
@sp_endpoint("/vendor/directFulfillment/payments/v1/invoices", method="POST")
|
|
16
|
+
async def submit_invoice(self, **kwargs) -> ApiResponse:
|
|
17
|
+
"""
|
|
18
|
+
submit_invoice(self, **kwargs) -> ApiResponse
|
|
19
|
+
|
|
20
|
+
Submits one or more invoices for a vendor's direct fulfillment orders.
|
|
21
|
+
|
|
22
|
+
**Usage Plans:**
|
|
23
|
+
|
|
24
|
+
====================================== ==============
|
|
25
|
+
Rate (requests per second) Burst
|
|
26
|
+
====================================== ==============
|
|
27
|
+
10 10
|
|
28
|
+
====================================== ==============
|
|
29
|
+
|
|
30
|
+
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.
|
|
31
|
+
|
|
32
|
+
Args:
|
|
33
|
+
body: {
|
|
34
|
+
"invoices": [
|
|
35
|
+
{
|
|
36
|
+
"invoiceNumber": "string",
|
|
37
|
+
"invoiceDate": "2019-08-24T14:15:22Z",
|
|
38
|
+
"referenceNumber": "string",
|
|
39
|
+
"remitToParty": {
|
|
40
|
+
"partyId": "string",
|
|
41
|
+
"address": {
|
|
42
|
+
"name": "string",
|
|
43
|
+
"addressLine1": "string",
|
|
44
|
+
"addressLine2": "string",
|
|
45
|
+
"addressLine3": "string",
|
|
46
|
+
"city": "string",
|
|
47
|
+
"county": "string",
|
|
48
|
+
"district": "string",
|
|
49
|
+
"stateOrRegion": "string",
|
|
50
|
+
"postalCode": "string",
|
|
51
|
+
"countryCode": "string",
|
|
52
|
+
"phone": "string"
|
|
53
|
+
},
|
|
54
|
+
"taxRegistrationDetails": [
|
|
55
|
+
{
|
|
56
|
+
"taxRegistrationType": "VAT",
|
|
57
|
+
"taxRegistrationNumber": "string",
|
|
58
|
+
"taxRegistrationAddress": {
|
|
59
|
+
"name": "string",
|
|
60
|
+
"addressLine1": "string",
|
|
61
|
+
"addressLine2": "string",
|
|
62
|
+
"addressLine3": "string",
|
|
63
|
+
"city": "string",
|
|
64
|
+
"county": "string",
|
|
65
|
+
"district": "string",
|
|
66
|
+
"stateOrRegion": "string",
|
|
67
|
+
"postalCode": "string",
|
|
68
|
+
"countryCode": "string",
|
|
69
|
+
"phone": "string"
|
|
70
|
+
},
|
|
71
|
+
"taxRegistrationMessage": "string"
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"shipFromParty": {
|
|
76
|
+
"partyId": "string",
|
|
77
|
+
"address": {
|
|
78
|
+
"name": "string",
|
|
79
|
+
"addressLine1": "string",
|
|
80
|
+
"addressLine2": "string",
|
|
81
|
+
"addressLine3": "string",
|
|
82
|
+
"city": "string",
|
|
83
|
+
"county": "string",
|
|
84
|
+
"district": "string",
|
|
85
|
+
"stateOrRegion": "string",
|
|
86
|
+
"postalCode": "string",
|
|
87
|
+
"countryCode": "string",
|
|
88
|
+
"phone": "string"
|
|
89
|
+
},
|
|
90
|
+
"taxRegistrationDetails": [
|
|
91
|
+
{
|
|
92
|
+
"taxRegistrationType": "VAT",
|
|
93
|
+
"taxRegistrationNumber": "string",
|
|
94
|
+
"taxRegistrationAddress": {
|
|
95
|
+
"name": "string",
|
|
96
|
+
"addressLine1": "string",
|
|
97
|
+
"addressLine2": "string",
|
|
98
|
+
"addressLine3": "string",
|
|
99
|
+
"city": "string",
|
|
100
|
+
"county": "string",
|
|
101
|
+
"district": "string",
|
|
102
|
+
"stateOrRegion": "string",
|
|
103
|
+
"postalCode": "string",
|
|
104
|
+
"countryCode": "string",
|
|
105
|
+
"phone": "string"
|
|
106
|
+
},
|
|
107
|
+
"taxRegistrationMessage": "string"
|
|
108
|
+
}
|
|
109
|
+
]
|
|
110
|
+
},
|
|
111
|
+
"billToParty": {
|
|
112
|
+
"partyId": "string",
|
|
113
|
+
"address": {
|
|
114
|
+
"name": "string",
|
|
115
|
+
"addressLine1": "string",
|
|
116
|
+
"addressLine2": "string",
|
|
117
|
+
"addressLine3": "string",
|
|
118
|
+
"city": "string",
|
|
119
|
+
"county": "string",
|
|
120
|
+
"district": "string",
|
|
121
|
+
"stateOrRegion": "string",
|
|
122
|
+
"postalCode": "string",
|
|
123
|
+
"countryCode": "string",
|
|
124
|
+
"phone": "string"
|
|
125
|
+
},
|
|
126
|
+
"taxRegistrationDetails": [
|
|
127
|
+
{
|
|
128
|
+
"taxRegistrationType": "VAT",
|
|
129
|
+
"taxRegistrationNumber": "string",
|
|
130
|
+
"taxRegistrationAddress": {
|
|
131
|
+
"name": "string",
|
|
132
|
+
"addressLine1": "string",
|
|
133
|
+
"addressLine2": "string",
|
|
134
|
+
"addressLine3": "string",
|
|
135
|
+
"city": "string",
|
|
136
|
+
"county": "string",
|
|
137
|
+
"district": "string",
|
|
138
|
+
"stateOrRegion": "string",
|
|
139
|
+
"postalCode": "string",
|
|
140
|
+
"countryCode": "string",
|
|
141
|
+
"phone": "string"
|
|
142
|
+
},
|
|
143
|
+
"taxRegistrationMessage": "string"
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
},
|
|
147
|
+
"shipToCountryCode": "string",
|
|
148
|
+
"paymentTermsCode": "string",
|
|
149
|
+
"invoiceTotal": {
|
|
150
|
+
"currencyCode": "string",
|
|
151
|
+
"amount": "string"
|
|
152
|
+
},
|
|
153
|
+
"taxTotals": [
|
|
154
|
+
{
|
|
155
|
+
"taxType": "CGST",
|
|
156
|
+
"taxRate": "string",
|
|
157
|
+
"taxAmount": {
|
|
158
|
+
"currencyCode": "string",
|
|
159
|
+
"amount": "string"
|
|
160
|
+
},
|
|
161
|
+
"taxableAmount": {
|
|
162
|
+
"currencyCode": "string",
|
|
163
|
+
"amount": "string"
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
],
|
|
167
|
+
"additionalDetails": [
|
|
168
|
+
{
|
|
169
|
+
"type": "SUR",
|
|
170
|
+
"detail": "string",
|
|
171
|
+
"languageCode": "string"
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"chargeDetails": [
|
|
175
|
+
{
|
|
176
|
+
"type": "GIFTWRAP",
|
|
177
|
+
"chargeAmount": {
|
|
178
|
+
"currencyCode": "string",
|
|
179
|
+
"amount": "string"
|
|
180
|
+
},
|
|
181
|
+
"taxDetails": [
|
|
182
|
+
{
|
|
183
|
+
"taxType": "CGST",
|
|
184
|
+
"taxRate": "string",
|
|
185
|
+
"taxAmount": {
|
|
186
|
+
"currencyCode": "string",
|
|
187
|
+
"amount": "string"
|
|
188
|
+
},
|
|
189
|
+
"taxableAmount": {
|
|
190
|
+
"currencyCode": "string",
|
|
191
|
+
"amount": "string"
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
]
|
|
195
|
+
}
|
|
196
|
+
],
|
|
197
|
+
"items": [
|
|
198
|
+
{
|
|
199
|
+
"itemSequenceNumber": "string",
|
|
200
|
+
"buyerProductIdentifier": "string",
|
|
201
|
+
"vendorProductIdentifier": "string",
|
|
202
|
+
"invoicedQuantity": {
|
|
203
|
+
"amount": 0,
|
|
204
|
+
"unitOfMeasure": "string"
|
|
205
|
+
},
|
|
206
|
+
"netCost": {
|
|
207
|
+
"currencyCode": "string",
|
|
208
|
+
"amount": "string"
|
|
209
|
+
},
|
|
210
|
+
"purchaseOrderNumber": "string",
|
|
211
|
+
"vendorOrderNumber": "string",
|
|
212
|
+
"hsnCode": "string",
|
|
213
|
+
"taxDetails": [
|
|
214
|
+
{
|
|
215
|
+
"taxType": "CGST",
|
|
216
|
+
"taxRate": "string",
|
|
217
|
+
"taxAmount": {
|
|
218
|
+
"currencyCode": "string",
|
|
219
|
+
"amount": "string"
|
|
220
|
+
},
|
|
221
|
+
"taxableAmount": {
|
|
222
|
+
"currencyCode": "string",
|
|
223
|
+
"amount": "string"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
],
|
|
227
|
+
"chargeDetails": [
|
|
228
|
+
{
|
|
229
|
+
"type": "GIFTWRAP",
|
|
230
|
+
"chargeAmount": {
|
|
231
|
+
"currencyCode": "string",
|
|
232
|
+
"amount": "string"
|
|
233
|
+
},
|
|
234
|
+
"taxDetails": [
|
|
235
|
+
{
|
|
236
|
+
"taxType": "CGST",
|
|
237
|
+
"taxRate": "string",
|
|
238
|
+
"taxAmount": {},
|
|
239
|
+
"taxableAmount": {}
|
|
240
|
+
}
|
|
241
|
+
]
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
}
|
|
245
|
+
]
|
|
246
|
+
}
|
|
247
|
+
]
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
Returns:
|
|
251
|
+
ApiResponse:
|
|
252
|
+
"""
|
|
253
|
+
|
|
254
|
+
return await self._request(kwargs.pop("path"), data=kwargs, add_marketplace=False)
|
|
File without changes
|