Skip to content

payment.cancelled

A payment was cancelled before capture (abandoned/voided checkout) — distinct from payment.refunded (post-capture reversal). Receivers release any provisional hold/order tied to the payment. S410 registry-integrity reconciliation: caracol + cosmos-pet declared this receiver in apps.json without a matching events.json entry; no ecosystem sender is wired yet (senders:[] until a payment source emits it).

Senders

None declared.

Receivers

  • caracol
  • cosmos-pet

Data schema

Each field maps to a type hint. | null indicates an optional field.

json
{
  "paymentId": "string",
  "amount": "number (cents)",
  "currency": "string (ISO 4217)",
  "reason": "string | null",
  "cancelledAt": "string (ISO datetime)",
  "referenceId": "string | null"
}

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
{
  "paymentId": "example-paymentId",
  "amount": 10000,
  "currency": "example-currency",
  "reason": "example-reason",
  "cancelledAt": "2026-04-17T12:00:00.000Z",
  "referenceId": "example-referenceId"
}

See also


Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.

Red Broom Software Ecosystem