Help index Getting started with LimeLM Types of software licensing What are Activations & Deactivations? How hardware-locked licensing and online activation works How to switch your licensing to LimeLM, TurboActivate, and TurboFloat Frequently asked questions (FAQ) Adding users to manage your LimeLM account Custom license fields Extra activation data Using TurboActivate … with Adobe AIR … with C# … with C, C++, & Objective-C … with Delphi … with Go … with Java … with NodeJS / Electron … with Python … with Xojo … with VB6 … with VBA … with VB.NET … on macOS … on Linux … with Inno Setup … with NSIS TurboActivate wizard Timed trials in your app TurboFloat Server Overview Commandline options Using our hosted TFS Using TurboFloat … with C# … with C, C++, & Objective-C … with Delphi … with Java … with NodeJS / Electron … with Python … with VB6 … with VBA … with VB.NET Account security Offline activation How to generate product keys after an order … with Authorize.Net … with Skrill … with PayPal … with FastSpring SaaS and time-limited licensing Proxies in TurboActivate Licensing multiple products per process Licensing from inside a virtual machine or hypervisor LimeLM web API functions Overview Encoding Response Format: REST Response Format: JSON feature.add feature.delete feature.edit feature.getAll pkey.activity pkey.advancedSearch pkey.deactivate pkey.delete pkey.find pkey.generate pkey.getDetails pkey.getID pkey.manualActivation pkey.manualDeactivation pkey.removeTag pkey.revoke pkey.setDetails pkey.setTags prod.getAll prod.create prod.createVers prod.changeName prod.editVers tag.delete test.echo trial.advancedSearch trial.manualVerifiedTrial trialExtension.delete trialExtension.generate trialExtension.getDetails trialExtension.getID trialExtension.search
REST Response Format
REST is the simplest response format to use - it's a simple XML block.
To return the response in REST format, send a parameter "format
" in the request with a value of "rest
". When using the REST request method, the response defaults to REST.
A method call returns this:
<?xml version="1.0" encoding="utf-8"?>
<rsp stat="ok">
[xml-payload-here]
</rsp>
If an error occurs, the following is returned:
<?xml version="1.0" encoding="utf-8"?>
<rsp stat="fail">
<err code="[error-code]" msg="[error-message]" />
</rsp>