customer.updated
Se dispara cuando cambian los datos de un cliente. Lleva el recurso de cliente actual completo.
Payload
All webhook payloads follow a consistent top-level structure with event-specific data nested within the data object.
The Commet customer ID (cus_...).
Your own identifier for this customer, if you provided one.
The customer's full name.
The customer's email.
The customer's timezone.
Custom key-value metadata you attached to the customer.
ISO 8601 datetime when the customer was created.
ISO 8601 datetime of this update.
{
"event": "customer.updated",
"timestamp": "2026-04-02T09:10:00.000Z",
"organizationId": "org_abc123",
"mode": "live",
"apiVersion": "2026-05-25",
"data": {
"id": "cus_1a2b3c4d",
"externalId": "user_123",
"fullName": "Ada Lovelace",
"email": "ada.lovelace@acme.com",
"timezone": "Europe/London",
"metadata": {
"plan_intent": "pro"
},
"createdAt": "2026-03-25T14:29:00.000Z",
"updatedAt": "2026-04-02T09:10:00.000Z"
}
}Qué cuenta como una actualización
El evento se dispara cuando cambia un campo del cliente: email, fullName, timezone, externalId o metadata. Lleva el recurso actual completo, no un diff — reemplaza tu copia local con el payload.
Cada actualización distinta entrega su propio evento, incluso varias en rápida sucesión. Al igual que customer.created, la forma del recurso sigue la versión de API fijada de tu endpoint.
¿Cómo está esta guía?