get_client_service_account
Retrieve the service account user for a specified client in Keycloak by providing the client ID and optional realm. Simplifies access management for identity services.
Instructions
Get service account user for a client.
Args:
id: The client's database ID
realm: Target realm (uses default if not specified)
Returns:
Service account user 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_client_service_accountArguments",
"type": "object"
}