Request Field Name Data Type Description Filters SerializableDictionary(Of String, String) An object describing the orders to retrieve. Sample vb.net code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
Dim sellerCloud As New SCService.SCServiceSoapClient Dim SCAuth As New SCService.AuthHeader Dim SCSettings As New SCService.ServiceOptions Dim keys As New List(Of String) Dim values As New List(Of String) // Add "From" and "To" filters Dim fromDate As New DateTime(2016, 10, 1) Dim toDate As New DateTime(2016, 10, 31) keys.Add("DateFrom") values.Add(fromDate.ToString("MM-dd-yyyy hh:mm:ss")) keys.Add("DateTo") values.Add(toDate.ToString("MM-dd-yyyy hh:mm:ss")) Dim filters As New SCService.SerializableDictionaryOfStringString With filters .Keys = keys.ToArray() .Values = values.ToArray() End With SCAuth.UserName = "username" SCAuth.Password = "password" //Return a list of orderIDs Dim orderIds As Integer() = sellerCloud.Orders_Get(SCAuth, SCSettings, filters) |
DropShip Orders When using orders_get set filter name “IncludeDS” with value True to pull dropship orders. Also, check Order_GetDatas info for dropship orders here.