add_consumption
Increase consumption units for a specific license by providing the license key, hardware ID, product, and consumption value. Manage overages and usage limits effectively with this tool.
Instructions
Add consumption units to a license
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allow_overages | No | ||
consumptions | Yes | ||
hardware_id | Yes | ||
license_key | Yes | ||
max_overages | No | ||
product | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"allow_overages": {
"type": "boolean"
},
"consumptions": {
"minimum": 1,
"type": "number"
},
"hardware_id": {
"minLength": 1,
"type": "string"
},
"license_key": {
"minLength": 1,
"type": "string"
},
"max_overages": {
"type": "number"
},
"product": {
"minLength": 1,
"type": "string"
}
},
"required": [
"license_key",
"hardware_id",
"product",
"consumptions"
],
"type": "object"
}