File tree Expand file tree Collapse file tree
sp_api/api/fulfillment_inbound Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55class 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 ):
You can’t perform that action at this time.
0 commit comments