-
Notifications
You must be signed in to change notification settings - Fork 25
Description
There is no way to get these dates on my FBA Shipments
- https://sellercentral.amazon.com/fba/inbound-shipment/summary/FBAXXXXXXXXX/shipmentEvents
- https://sellercentral.amazon.com/fba/inbound-shipment/summary/FBAXXXXXXXXX/tracking
Here is what I have tried using these packages https://github.com/amzn/selling-partner-api-sdk/tree/main/python/sdk/spapi/api
Script 1:
from spapi.api.awd_v2024_05_09.awd_api import AwdApi
awd_api = AwdApi(client.api_client)
print(awd_api.list_inbound_shipments())
Output 2: {'next_token': None, 'shipments': []}
Script 2
from spapi.api.fulfillment_inbound_v0.fba_inbound_v0_api import FbaInboundV0Api
fba_api = FbaInboundV0Api(client.api_client)
print(fba_api.get_shipment_items_by_shipment_id
(shipment_id='FBAXXXXXXXXX', marketplace_id='ATVPDKIKX0DER'))
Output 2
It gives me all the fields I need except the relevant date fields. The only date field is last_updated_time. I am looking for other date fields.