Retrieves information about a set of customers.
Note that to call this function, you must:
- Set the AdminEncryptionKey property
C#: DataSet GetCustomersInfo (string webServiceUrl, string fieldName, string fieldOperator, string fieldValue, out string response)
Parameters
webServiceUrl - URL to the QLM License Server.
field - field from the Customers table. Typical fields are: Email, FullName, CustomerID
fieldOperator - a valid SQL operator such as: =, like, <>
fieldValue - value of the field to match
response - XML fragment containing the result of the call. The Xml fragment schema is as follows:
<?xml version='1.0' encoding='UTF-8'?>
<QuickLicenseManager>
<result>Successfully executed query ...</result>
In the event of an error, the XML fragments returns:
</QuickLicenseManager>
<?xml version='1.0' encoding='UTF-8'?>
<QuickLicenseManager>
<error>Details about the error</error>
</QuickLicenseManager>
Example
- DataSet ds = license.GetCustomersInfo (webServiceUrl, "email", "=", "'customer@mail.com'", out response);
Comments
0 comments
Article is closed for comments.