contact.updated
A CRM contact record was updated in Camino — receiver apps sync the changed fields to their local contact/investor/resident records.
Senders
None declared.
Receivers
garitarito
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"contactId": "string",
"email": "string (optional)",
"name": "string (optional)",
"phone": "string (optional)",
"fields": "object (changed fields)"
}Example payload
The following is a synthetic payload that matches the schema. Production payloads are signed with HMAC-SHA256 and delivered to each receiver's registered webhook endpoint.
json
{
"contactId": "example-contactId",
"email": "example-email",
"name": "example-name",
"phone": "example-phone",
"fields": {}
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.