get_trial_key
Generate trial license keys for specific products using hardware ID inputs within the LicenseSpring MCP Server for streamlined licensing management.
Instructions
Generate a trial license key for a product
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| hardware_id | Yes | ||
| product | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"hardware_id": {
"minLength": 1,
"type": "string"
},
"product": {
"minLength": 1,
"type": "string"
}
},
"required": [
"hardware_id",
"product"
],
"type": "object"
}