deactivate_license
Deactivate a license linked to a specific hardware ID by providing the license key, hardware ID, and product details. Ensure license management integrity and compliance.
Instructions
Deactivate a license for a specific hardware ID
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"
}