Ebay .Net SDK, GetOrder Note Field

I am trying to get the "Note" field from an order.

Here is my working code

 

var context = GetContext("au");
GetOrdersCall api = new GetOrdersCall(context);
api.OrderRole = TradingRoleCodeType.Seller;
api.OrderStatus = OrderStatusCodeType.InProcess;
System.DateTime calTo = System.DateTime.Now;
System.DateTime calFrom = calTo.AddHours(-10);
api.CreateTimeFrom = calFrom;
api.CreateTimeTo = calTo;
// Make API call.

OrderTypeCollection orders = api.GetOrders(calFrom, calTo, api.OrderRole, api.OrderStatus);
//OrderTypeCollection orders = api.GetOrders(collection);
var firstOrder = orders.Cast<OrderType>().FirstOrDefault();

I can get the order but there is no "Note" field available in the object. How can get the note field?

This is the note field I am after


3ysMf.png

Message 1 of 3
Latest reply
2 REPLIES 2

Ebay .Net SDK, GetOrder Note Field

gec2002
Community Member

I am no expert but there is an API call SetUserNotes, but in typical eBay fashion I don't think there is a GetUserNotes.  I suggest you try your question on the US Developers Board, more chance of a detailed  (correct?) answer there.

---------------------------------------------------
Profanity is no substitute for wit.
Message 2 of 3
Latest reply

Ebay .Net SDK, GetOrder Note Field

I will try that call and try to find a GeUserNote.

Message 3 of 3
Latest reply