update_contact
ActiveTool of WebZum - The Hosting Layer for AI-Generated Web Content
Update a WebZum site's universal contact fields — phone, email, WhatsApp, the primary contact channel, address, hours — OR the business/brand name. Use this (NOT update_site_html) for these fields: it updates the canonical business record AND sweeps every page, so contact-form delivery, tel:/mailto:/wa.me links, header, footer, page titles, and body copy all stay in sync. WhatsApp: pass an instruction like "add my WhatsApp +966 55 123 4567" (keep the country code) to render a wa.me click-to-chat button site-wide, or "make WhatsApp the main way to reach us" to set it as the primary CTA. Required: businessId, versionId, and a conversationHistory containing at least one user turn describing the change verbatim. Do NOT use for general copy/layout edits (use update_site_html) — this tool only touches contact fields + the business name. Returns { versionId, status: 'completed' | 'in_progress', ...extra }. If status is 'in_progress', poll get_site_status with the returned versionId every 5-10s until isComplete is true. Concurrency: edits on the same businessId MUST be serial.
Parameters schema
{
"type": "object",
"required": [
"businessId",
"versionId",
"conversationHistory"
],
"properties": {
"versionId": {
"type": "string",
"description": "The versionId to base this edit on."
},
"businessId": {
"type": "string",
"description": "The site's businessId."
},
"conversationHistory": {
"type": "array",
"items": {
"type": "object",
"required": [
"role",
"content"
],
"properties": {
"role": {
"enum": [
"user",
"assistant"
],
"type": "string"
},
"content": {
"type": "string"
}
}
},
"minItems": 1,
"description": "Recent chat turns describing the contact/name change. Must include at least one user turn with the verbatim request (e.g. 'add my WhatsApp +966551234567 and make it the main contact')."
}
}
}Parent server
WebZum - The Hosting Layer for AI-Generated Web Content
1/7 registries