Skip to content

Commit 6580e8b

Browse files
committed
add make_endpoint script
1 parent 27808c2 commit 6580e8b

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

sp_api/api/fulfillment_inbound/fulfillment_inbound.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,22 @@
44

55
class FulfillmentInbound(Client):
66
@sp_endpoint("/fba/inbound/v0/itemsGuidance")
7-
def item_guidance(self, data, **kwargs):
7+
def item_guidance(self, **kwargs):
88
"""
9-
item_guidance(self, data, **kwargs) -> ApiResponse
9+
item_guidance(self, **kwargs) -> ApiResponse
1010
1111
Examples:
1212
literal blocks::
1313
14-
FulfillmentInbound().item_guidance({"MarkeplaceId": "US", "ASINList": ["ASIN1"]})
14+
FulfillmentInbound().item_guidance(**{"MarkeplaceId": "US", "ASINList": ["ASIN1"]})
1515
1616
Args:
17-
data:
1817
**kwargs:
1918
2019
Returns:
2120
ApiResponse
2221
"""
23-
return self._request(kwargs.pop("path"), params={**data, **kwargs})
22+
return self._request(kwargs.pop("path"), params=kwargs)
2423

2524
@sp_endpoint("/fba/inbound/v0/plans", method="POST")
2625
def plans(self, data, **kwargs):

0 commit comments

Comments
 (0)