Hi,
the LimeLM c# api file gives the wrong command for deactivating the machines (wrong flags). It should be like this. Thanks!
public static string DeactivateLicense(string act_id)
{
List<KeyValuePair<string, object>> postData = new List<KeyValuePair<string, object>>
{
new KeyValuePair<string, object>("method", "limelm.pkey.deactivate"),
new KeyValuePair<string, object>("api_key", APIKey),
new KeyValuePair<string, object>("act_id", act_id)
};
return PostRequest(postData);
}