web API

I can't get understand how to use the Web API.I have searched the help.The following is my code to try and access the customers license information: TurboActivate.Activate() Dim _productkey As String = TurboActivate.GetPKey() lblProductKey.Text = _productkey lblExpiresOn.Text = TurboActivate.GetFeatureValue("expires_on") lblCompany.Text = TurboActivate.GetFeatureValue("CompanyName")

The above is working fine.

I'm trying to get 'acts' and 'acts used' in order to let the customer know Total Activations allowed and used. I have looked at limelm.pkey.getDetails but don't know how to implement, or the correct syntax in my vb.net code to get to this information. A short and sweet code example would be helpful.Thanks in advance.

I'm trying to get 'acts' and 'acts used' in order to let the customer know Total Activations allowed and used.

That information is not available from the TurboActivate API. You can store that information in custom license fields if you want.

I have looked at limelm.pkey.getDetails but don't know how to implement, or the correct syntax in my vb.net code to get to this information.

You shouldn't use web API in your app. Why? Because you app would need to contain the API Key, which allows anyone full access to your LimeLM account.

Make sense?

gotcha. Thanks.