Reputation: 11
I am currently using the Amazon Selling Partner Fulfillment Inbound API v2024-03-20 to retrieve shipment data for past and current shipments, which I need to present to a client. After reading the documentation, I have made the following API calls:
GET: /inbound/fba/2024-03-20/inboundPlans/
GET: /inbound/fba/2024-03-20/inboundPlans/{Inbound Plan ID}/placementOptions
The placementOptions
endpoint is returning empty data, even though I expect the data to exist. I have seen discussions in other forums where users have successfully retrieved data using the now-deprecated getShipments
endpoint from version 0, but I am unable to retrieve any data with the new endpoints.
I suspect that I might be misinterpreting the API flow or missing a crucial step in the process. I would greatly appreciate if someone with knowledge/expertise in these specific API endpoints could point out where I might be going wrong in my approach and confirm if I am following the correct flow.
Upvotes: 0
Views: 46
Reputation: 17
Check if getInboundPlan operation responses with empty placementOptions
attribute too. There are just placementOptionId
and status
attributes, but at least you can exclude query error. If it still empty, maybe your Shipments do not have any Placement Options, it is possible if you created Shipment Plan incorrectly, maybe wrong sourceAddress
API v2024-03-20 is working fine, I retrieve placementOptions
for unconfirmed and confirmed Shipments
Upvotes: 0