Hi.
I'm trying to retrieve info for an item, so I can bid on it, watch it etc.
Here is how I'm trying to retrieve the item and its details:
var request = new GetItemRequestType();
request.ItemID = ItemID.ToString();
var call = new GetItemCall(_ApiContext);
var response = (GetItemResponseType)call.ExecuteRequest(request);
The last line throws the following exception with message:
This item cannot be accessed because the listing has been deleted, is a Half.com listing, or you are not the seller.
Any clue how to solve this? Am I using the wrong method?