DigitalCustomers.GetCustomerUpdateHistory Method

Get all customer updates into a DataTable, ready to be displayed in a grid. 
Public Function GetCustomerUpdateHistory() As DataTable
This language is not supported or no code example is available.
public DataTable GetCustomerUpdateHistory()
This language is not supported or no code example is available.

Return Value

DataTable
Example
 
 var dgc = new DigitalCustomers("AADEUserID", "OcpApimSubscriptionKey", "EntityVatNumber", "Arbitrans User", "Arbitrans Key", false);
 string[] searchParam = new[] { "100000000000100" };
 
 dgc.RequestCustomers(100000000000001L, 5, searchParam, true);
 
 DataTable dt = dgc.getCustomerUpdateHistory();
 DataGridView1.DataSource = dt; // Load DataTable directly to a DataGridView
 					
This language is not supported or no code example is available.
 Dim dgc as DigitalCustomers = new DigitalCustomers("AADEUserID", "OcpApimSubscriptionKey", "EntityVatNumber", "Arbitrans User", "Arbitrans Key", False)
 Dim searchParam As String() = {"100000000000100"}
 
 dgc.RequestCustomers(100000000000001, 5, searchParam, True)
 
 Dim dt As DataTable = dgc.getCustomerUpdateHistory()
 DataGridView1.DataSource = dt 'Load DataTable directly to a DataGridView
 					
This language is not supported or no code example is available.

.NET Framework

Supported in: 3.5 or newer

In this article

Definition