get_customer_license_users
Retrieve users associated with a specific license for a product and customer using the LicenseSpring MCP Server to manage license data effectively.
Instructions
Get customer license users for a specific license
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customer | Yes | ||
| product | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"customer": {
"minLength": 1,
"type": "string"
},
"product": {
"minLength": 1,
"type": "string"
}
},
"required": [
"product",
"customer"
],
"type": "object"
}