delete_client
Remove a client from the Keycloak identity management server by specifying the client's database ID and optional realm. Returns a status message upon completion.
Instructions
Delete a client.
Args:
id: The client's database ID
realm: Target realm (uses default if not specified)
Returns:
Status message
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": "delete_clientArguments",
"type": "object"
}