subscription.limit_approaching
A tenant's subscription usage is approaching the plan limit — Camino notifies subscriber apps to surface a plan-upgrade prompt to the tenant operator.
Senders
camino
Receivers
agentecosmos-pethojamadriguera
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"planId": "string",
"feature": "string (stamps|ai_calls|users|etc.)",
"currentUsage": "number",
"planLimit": "number",
"percentUsed": "number",
"billingCycle": "string (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",
"feature": "stamps",
"currentUsage": 0,
"planLimit": 0,
"percentUsed": 0,
"billingCycle": "example-billingCycle"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.