cldkctl_token_update
Update token names by specifying a token ID and the new name using the MCP cldkctl Server, ensuring accurate and consistent token management across Cloudeka’s CLI functionality.
Instructions
Call the cldkctl_token_update endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | New token name | |
token_id | Yes | Token ID to update |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "New token name",
"type": "string"
},
"token_id": {
"description": "Token ID to update",
"type": "string"
}
},
"required": [
"token_id",
"name"
],
"type": "object"
}