-
Notifications
You must be signed in to change notification settings - Fork 2
GetDeliveryRouteList
Arivetti edited this page Aug 8, 2025
·
2 revisions
The GetDeliveryRouteList function retrieves the list of available delivery route from an entity.
public WSResult2OfArrayOfDeliveryRoute GetDeliveryRouteList(string token)Public Function GetDeliveryRouteList(ByVal token As String) As WSResult2OfArrayOfDeliveryRoute| Parameter | Type | Description |
|---|---|---|
| token | String | The session token retrieved during authentication. |
Integration ws = new Integration();
String auth = "";// See Authentication page for more
if( auth != null )
{
WSResult2OfArrayOfDeliveryRoute routes = this.ws.GetDeliveryRouteList(this.auth);
if (routes.Status == OperationStatus.Success)
{
foreach (DeliveryRoute route in routes.Result)
{
}
}
}Dim ws As New Integration_1_1
Dim auth As String = "" // See Authentication page for more
If (Not Me.auth Is Nothing) Then
Dim routes As WSResult2OfArrayOfDeliveryRoute = Me.ws.GetDeliveryRouteList(Me.auth)
If (routes.Status = OperationStatus.Success) Then
Dim route As DeliveryRoute
For Each route In routes.Result
Next
End If
End If