cldkctl_token_regenerate
Regenerate a specific token with a new expiration period in days using the MCP cldkctl Server. Ensures token security by updating its validity.
Instructions
Call the cldkctl_token_regenerate endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expiration_days | Yes | Expiration in days | |
token_id | Yes | Token ID to regenerate |
Input Schema (JSON Schema)
{
"properties": {
"expiration_days": {
"description": "Expiration in days",
"type": "integer"
},
"token_id": {
"description": "Token ID to regenerate",
"type": "string"
}
},
"required": [
"token_id",
"expiration_days"
],
"type": "object"
}