payment_link.canceled
Se canceló un link de pago antes de ser pagado.
Payload
All webhook payloads follow a consistent top-level structure with event-specific data nested within the data object.
The payment link ID.
The link status. Always "canceled" for this event.
The total amount of the canceled link in cents (100 = $1.00).
The payment currency code.
The payment description shown to the customer.
The customer ID, or null when the link is not tied to a customer. Returns your externalId if you provided one when creating the customer, otherwise returns the Commet publicId.
{
"event": "payment_link.canceled",
"timestamp": "2026-06-18T15:00:00.000Z",
"organizationId": "org_abc123",
"mode": "live",
"apiVersion": "2026-06-10",
"data": {
"paymentId": "pay_l1m2n3",
"status": "canceled",
"amount": 5000,
"currency": "usd",
"description": "One-time onboarding fee",
"customerId": "user_123"
}
}Cuándo se dispara
Cuando se cancela un link de pago pendiente antes de que el cliente lo pague. Un link cancelado ya no se puede pagar.
Los links de pago nunca vencen por sí solos — no hay evento de expiración. Un link sigue siendo pagable hasta que se paga o se cancela explícitamente.
El evento se dispara igual ya sea que tu organización use el proveedor Stripe o el proveedor sandbox de Commet.
¿Cómo está esta guía?