get_client
Retrieve a specific client by its database ID from the Keycloak identity and access management server, specifying the target realm if needed, and return the client object.
Instructions
Get a specific client by database ID.
Args:
id: The client's database ID (not client_id)
realm: Target realm (uses default if not specified)
Returns:
Client 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": "get_clientArguments",
"type": "object"
}