You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ShipmentStatusList is made of ShipmentStatus items
This is a critical fix, without this change you can not run getShipments like this.
var param = new Parameter.FulFillmentInbound.ParameterGetShipments()
{
QueryType = Constants.QueryType.DATE_RANGE,
MarketplaceId = MarketPlace.US.ID,
ShipmentStatusList = (new List<ShipmentStatus> { ShipmentStatus.CLOSED, ShipmentStatus.DELIVERED, ShipmentStatus.RECEIVING }),
LastUpdatedAfter = DateTime.Now.AddDays(-60),
LastUpdatedBefore = DateTime.Now
};
return amazonConnection.FulFillmentInbound.GetShipments(param);
0 commit comments