activate_license
Activate a software license by providing a license key, hardware ID, and product code. This tool integrates with LicenseSpring APIs to manage licensing operations effectively.
Instructions
Activate a license with hardware ID and product code
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hardware_id | Yes | ||
license_key | Yes | ||
product | Yes | ||
quantity | No |
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"
},
"quantity": {
"default": 1,
"type": "number"
}
},
"required": [
"license_key",
"hardware_id",
"product"
],
"type": "object"
}