get-user-by-email
Retrieve detailed user profile information from a Zulip workspace by providing the exact email address. Includes Gravatar URL and custom profile fields if specified.
Instructions
📧 EXACT LOOKUP: Find a user when you have their exact email address. Use this when you know the specific email and need detailed profile information. Returns single user with complete details.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_gravatar | No | Include Gravatar profile image URL | |
Yes | Email address of the user to look up | ||
include_custom_profile_fields | No | Include organization-specific custom profile fields |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"client_gravatar": {
"description": "Include Gravatar profile image URL",
"type": "boolean"
},
"email": {
"description": "Email address of the user to look up",
"format": "email",
"type": "string"
},
"include_custom_profile_fields": {
"description": "Include organization-specific custom profile fields",
"type": "boolean"
}
},
"required": [
"email"
],
"type": "object"
}