We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Claytondus.AmazonMWS/Claytondus.AmazonMWS.MerchantFulfillment.Test/MWSMerchantFulfillmentServiceSample.cs
Line 132 in 5a21e41
seems to me that label options are missing from your code
see here a direct download from amazon.
public CreateShipmentResponse InvokeCreateShipment() { // Create a request. CreateShipmentRequest request = new CreateShipmentRequest(); string sellerId = "example"; request.SellerId = sellerId; string mwsAuthToken = "example"; request.MWSAuthToken = mwsAuthToken; ShipmentRequestDetails shipmentRequestDetails = new ShipmentRequestDetails(); request.ShipmentRequestDetails = shipmentRequestDetails; string shippingServiceId = "example"; request.ShippingServiceId = shippingServiceId; string shippingServiceOfferId = "example"; request.ShippingServiceOfferId = shippingServiceOfferId; string hazmatType = "example"; request.HazmatType = hazmatType; LabelFormatOptionRequest labelFormatOption = new LabelFormatOptionRequest(); request.LabelFormatOption = labelFormatOption; List<AdditionalSellerInputs> shipmentLevelSellerInputsList = new List<AdditionalSellerInputs>(); request.ShipmentLevelSellerInputsList = shipmentLevelSellerInputsList; return this.client.CreateShipment(request); }
The text was updated successfully, but these errors were encountered:
Added the new label options, but I lack the ability to test live. Use Claytondus.AmazonMWS.MerchantFulfillment 0.4.0.
Sorry, something went wrong.
No branches or pull requests
Claytondus.AmazonMWS/Claytondus.AmazonMWS.MerchantFulfillment.Test/MWSMerchantFulfillmentServiceSample.cs
Line 132 in 5a21e41
seems to me that label options are missing from your code
see here a direct download from amazon.
The text was updated successfully, but these errors were encountered: