regenerate_client_secret
Generate a new client secret for a specified client in the Keycloak IAM system. Provide the client's database ID and optional realm to update credentials securely.
Instructions
Regenerate the client secret.
Args:
id: The client's database ID
realm: Target realm (uses default if not specified)
Returns:
New client secret object
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
realm | No |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"title": "Id",
"type": "string"
},
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"required": [
"id"
],
"title": "regenerate_client_secretArguments",
"type": "object"
}