I am currently using Amazon Selling Partner Fulfillment Inbound API v0 to get shipments (GET https://sellingpartnerapi-eu.amazon.com/fba/inbound/v0/shipments). According to docs, v0 is deprecated and the switch to v2024-03-20 should be made. However, I can’t seem to find an equivalent operation in v2024-03-20. I’ve tried listing inboundPlans, then getting the shipments for each inbound plan, but this results only in empty lists. Data should be returned, as using the API version v0, I still get shipments. What I tried in v2024-03-20 was:
GET https://sellingpartnerapi-eu.amazon.com/inbound/fba/2024-03-20/inboundPlans to get inbound plans
GET https://sellingpartnerapi-eu.amazon.com/inbound/fba/2024-03-20/inboundPlans/{inboundPlanId} to get shipments per inbound plan, but the shipments list is always empty:
{‘createdAt’: ‘redacted’, ….. , ‘shipments’: [], ‘status’: ‘ACTIVE’}
Is getting shipments possible in v2024-03-20? I am also confused as this is in the docs:
That sounds to me like getShipments isn’t being deprecated (“All operations other than the following…”, yet when accessing the getShipments section, it is marked as deprecated:
Any input would be appreciated, thanks!