track_device_variables
Monitor and update custom variables for a device using license key, hardware ID, and product details to enhance license management and tracking capabilities.
Instructions
Track custom variables for a device
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hardware_id | Yes | ||
| license_key | Yes | ||
| product | Yes | ||
| variables | 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"
},
"variables": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
},
"required": [
"license_key",
"hardware_id",
"product",
"variables"
],
"type": "object"
}