payment_link.created
Se creó un link de pago y está listo para 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 "pending" for this event.
The total amount to collect 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.created",
"timestamp": "2026-06-18T14:00:00.000Z",
"organizationId": "org_abc123",
"mode": "live",
"apiVersion": "2026-06-10",
"data": {
"paymentId": "pay_l1m2n3",
"status": "pending",
"amount": 5000,
"currency": "usd",
"description": "One-time onboarding fee",
"customerId": "user_123"
}
}Cuándo se dispara
Cuando se crea un link de pago con Commet Pay. Un link de pago es un cobro único con el cliente presente — no hay suscripción ni plan detrás. El link está pending: el cliente todavía no pagó.
No entregues la compra en este evento. Esperá a payment_link.completed.
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?