customer.updated
A customer/contact record was updated in Camino — receiver apps sync the changed fields to their local customer records for display and invoicing accuracy.
Senders
caminoconstanzacaracol
Receivers
agentecolectivaconstanzacosmos-petgaritahojamadriguera
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"customerId": "string",
"email": "string (optional)",
"name": "string (optional)",
"phone": "string (optional)",
"rfc": "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
{
"customerId": "example-customerId",
"email": "example-email",
"name": "example-name",
"phone": "example-phone",
"rfc": "example-rfc",
"fields": {}
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.