Home
Find the answer to your question
Here is a basic sample written using the .NET SDK (v673) for listing a fixed price item to the AU site using the AddFixedPriceItem call. The sample has been written in C#.
The mandatory fields for listing an item are -
1. Title
2. Description
3. Country
4. PostalCode
5. Currency
6. StartPrice
7. CategoryID
8. ListingDuration
9. PaymentMethods
10. PayPalEmailAddress
11. ShippingDetails
12. DispatchTimeMax
13. ReturnPolicy
The item is set to be able to be tracked by its SKU number. Therefore a unique SKU number needs to be specified in the request. As a best practice it is recommended to list an item by specifying its Condition.
Below is the code. Corresponding SOAP request is attached with this article.
using System;
|