subscription.past_due
A tenant's subscription entered past_due state after a failed renewal — Camino dunning flow pauses feature access without cancelling. Receiver apps mark memberships or subscriptions past_due until payment is received.
Senders
camino
Receivers
comalplenurarito
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"planId": "string",
"billingCycle": "string (monthly|yearly)",
"dueAmount": "number (cents)",
"currency": "string",
"gracePeriodEnd": "string (ISO date, optional)"
}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
{
"planId": "example-planId",
"billingCycle": "monthly",
"dueAmount": 10000,
"currency": "example-currency",
"gracePeriodEnd": "2026-04-17"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.