bee.charge.settled
A bee charge is fully settled (vales + cash). Hoja closes the matching ticket, deduplicated by a DETERMINISTIC eventId so retries close it once. Also delivered to colectiva, which has no handler and only archives it.
Senders
bee
Receivers
hoja
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"chargeRequestId": "string",
"externalRef": "string | null",
"cellId": "string",
"communityId": "string",
"status": "string",
"totalCents": "number",
"valesAppliedCents": "number",
"cashCents": "number | null",
"settledAt": "string (ISO datetime) | null",
"occurredAt": "string (ISO datetime)"
}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
{
"chargeRequestId": "example-chargeRequestId",
"externalRef": "example-externalRef",
"cellId": "example-cellId",
"communityId": "example-communityId",
"status": "example-status",
"totalCents": 0,
"valesAppliedCents": 0,
"cashCents": 0,
"settledAt": "2026-04-17T12:00:00.000Z",
"occurredAt": "2026-04-17T12:00:00.000Z"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.