deactivate_offline
Deactivate a license for offline use by specifying the license key, hardware ID, and product code. Supports secure license management with LicenseSpring MCP Server.
Instructions
Deactivate a license for offline use with hardware ID and product code
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hardware_id | Yes | ||
| license_key | Yes | ||
| product | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hardware_id": {
"minLength": 1,
"type": "string"
},
"license_key": {
"minLength": 1,
"type": "string"
},
"product": {
"minLength": 1,
"type": "string"
}
},
"required": [
"license_key",
"hardware_id",
"product"
],
"type": "object"
}