garita.stay.checked_in
A guest checked in to a Garita boutique-hotel stay — fire-and-forget, currently no subscribers. Carries reservation + property context for CRM/activity sync.
Senders
garita
Receivers
None declared.
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"reservation_id": "string",
"confirmation_code": "string",
"property_id": "string",
"property_name": "string",
"guest_name": "string",
"guest_phone": "string | null",
"room_name": "string",
"check_out_date": "string (ISO date)",
"channel": "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
{
"reservation_id": "example-reservation_id",
"confirmation_code": "example-confirmation_code",
"property_id": "example-property_id",
"property_name": "example-property_name",
"guest_name": "example-guest_name",
"guest_phone": "example-guest_phone",
"room_name": "example-room_name",
"check_out_date": "2026-04-17",
"channel": "example-channel"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.