Skip to main content

Find Contact By Email All Tenants

Snapshot Catalog Entry

This page is generated from broker tools/list snapshot data.

GETghl.find_contact_by_email_all_tenants

Find contacts by email across all tenants.

Request Body

{
"jsonrpc": "2.0",
"id": "ghl-find-contact-by-email-all-tenants-example",
"method": "tools/call",
"params": {
"name": "ghl.find_contact_by_email_all_tenants",
"arguments": {
"email": "email_example",
"tenantIds": [],
"limitPerTenant": 1,
"includeDetails": false
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"email": {
"type": "string",
"format": "email"
},
"tenantIds": {
"type": "array",
"items": {
"type": "string"
}
},
"limitPerTenant": {
"type": "number"
},
"includeDetails": {
"type": "boolean"
}
},
"required": [
"email"
],
"additionalProperties": false
}

Code Examples

curl -X POST 'https://madpanda3d.com/lab/mad-mcps/portal/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "ghl-find-contact-by-email-all-tenants-example",
"method": "tools/call",
"params": {
"name": "ghl.find_contact_by_email_all_tenants",
"arguments": {
"email": "email_example",
"tenantIds": [],
"limitPerTenant": 1,
"includeDetails": false
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool ghl.find_contact_by_email_all_tenants executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}