Gets a list of all the customer’s registered licenses in the Quik! Customer database (ordered by account status)

Namespace:  QFEM_WebServices
Assembly:  QFEM_WebServices (in QFEM_WebServices.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public QuikResultWS GetLicenseList(
	string FirstName,
	string LastName,
	string Email,
	string CustomerUserIDList,
	string LicensesStatusIDList,
	DateTime LicenseExpiryFROM,
	DateTime LicenseExpiryTO
)
Visual Basic (Declaration)
Public Function GetLicenseList ( _
	FirstName As String, _
	LastName As String, _
	Email As String, _
	CustomerUserIDList As String, _
	LicensesStatusIDList As String, _
	LicenseExpiryFROM As DateTime, _
	LicenseExpiryTO As DateTime _
) As QuikResultWS
Visual C++
public:
QuikResultWS^ GetLicenseList(
	String^ FirstName, 
	String^ LastName, 
	String^ Email, 
	String^ CustomerUserIDList, 
	String^ LicensesStatusIDList, 
	DateTime LicenseExpiryFROM, 
	DateTime LicenseExpiryTO
)

Parameters

FirstName
Type: System..::.String
Licensee first name
LastName
Type: System..::.String
Licensee last name
Email
Type: System..::.String
Licensee email address
CustomerUserIDList
Type: System..::.String
CSV list of CustomerUserIDs
LicensesStatusIDList
Type: System..::.String
CSV list of LicenseStatusIDs
LicenseExpiryFROM
Type: System..::.DateTime
The minimum date a license expires
LicenseExpiryTO
Type: System..::.DateTime
The maximum date a license expires

Return Value

A QuikResultWS object with the following information:
  • ErrorFlag
  • ErrorCode
  • Message
  • ResultData with a DataTable that contains the following columns: FirstName, MiddleName, LastName, Email, Phone, CustomerUserID, LicenseStatusID, LicenseExpiry

Remarks

To return a subset of the entire list criteria can be passed in for the License Status, License Expiry and to perform partial matching on the first name, last name, email and CustomerUserID fields. For partial matching, values should be passed in without wildcards (% or * characters will be ignored) and without case sensitivity.

See Also