caja.closed
Cash register (caja) close summary from Caracol POS — end-of-day totals for fiscal reconciliation in Constanza
Senders
caracol
Receivers
constanza
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"cajaId": "string",
"branchId": "string",
"openedAt": "string (ISO datetime)",
"closedAt": "string (ISO datetime)",
"totalSales": "number",
"totalCash": "number",
"totalCard": "number",
"totalTransfer": "number",
"currency": "string"
}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
{
"cajaId": "example-cajaId",
"branchId": "example-branchId",
"openedAt": "2026-04-17T12:00:00.000Z",
"closedAt": "2026-04-17T12:00:00.000Z",
"totalSales": 0,
"totalCash": 0,
"totalCard": 0,
"totalTransfer": 0,
"currency": "example-currency"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.