OnTime Extension SDK Documentation
OnTime.Extensions.SDK Namespace / DataAccess Class / GetOrderStatusChanges Method
The unique identifier of the Order as a Guid.



In This Topic
    GetOrderStatusChanges Method
    In This Topic
    Retrieves the entire Status history for a given Order.
    Syntax
    'Declaration
     
    
    Public Function GetOrderStatusChanges( _
       ByVal orderID As Guid _
    ) As List(Of Status)
    'Usage
     
    
    Dim instance As DataAccess
    Dim orderID As Guid
    Dim value As List(Of Status)
     
    value = instance.GetOrderStatusChanges(orderID)
    public List<Status> GetOrderStatusChanges( 
       Guid orderID
    )
    public:
    List<Status^>^ GetOrderStatusChanges( 
       Guid orderID
    ) 

    Parameters

    orderID
    The unique identifier of the Order as a Guid.

    Return Value

    An array of comprehensive Status objects.
    Requirements

    Target Platforms: Windows 7, Windows 8, Windows 8.1, Windows 10, Windows 11, Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2012, Windows Server 2012 R2, Windows Server 2016, Windows Server 2019, Windows Server 2022

    See Also