Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7441ccb + b168df6 commit cfc39c4Copy full SHA for cfc39c4
mws/apis/outbound_shipments.py
@@ -88,14 +88,18 @@ def update_fulfillment_order(self):
88
"""
89
raise NotImplementedError
90
91
- def get_fulfillment_order(self):
+ def get_fulfillment_order(self, shipment_id):
92
93
Returns a fulfillment order based on a specified SellerFulfillmentOrderId.
94
95
Docs:
96
http://docs.developer.amazonservices.com/en_US/fba_outbound/FBAOutbound_GetFulfillmentOrder.html
97
98
- raise NotImplementedError
+ data = {
99
+ 'Action': 'GetFulfillmentOrder',
100
+ 'SellerFulfillmentOrderId': shipment_id,
101
+ }
102
+ return self.make_request(data)
103
104
@next_token_action('ListAllFulfillmentOrders')
105
def list_all_fulfillment_orders(self, next_token=None):
0 commit comments