booking.reserved
A booking has been reserved/created (coins/funds deducted, status='pending'). PD-073 Slice 1 (S317) — semantic-corrected rename of the previous goodbay booking.completed-at-creation emit. Settlement signal moves to the new booking.completed once Slice 2 lands. Colectiva wired as receiver in Slice 3.
Senders
goodbay
Receivers
colectiva
Data schema
Each field maps to a type hint. | null indicates an optional field.
json
{
"bookingId": "string",
"propertyId": "string",
"guestId": "string",
"ownerId": "string",
"priceInCoins": "number",
"platformFeeInCoins": "number",
"ownerPayoutInCoins": "number",
"totalNights": "number",
"amountMxn": "number",
"platformFeeMxn": "number",
"ownerPayoutMxn": "number",
"startDate": "string (ISO date)",
"endDate": "string (ISO date)"
}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
{
"bookingId": "example-bookingId",
"propertyId": "example-propertyId",
"guestId": "example-guestId",
"ownerId": "example-ownerId",
"priceInCoins": 0,
"platformFeeInCoins": 0,
"ownerPayoutInCoins": 0,
"totalNights": 0,
"amountMxn": 0,
"platformFeeMxn": 0,
"ownerPayoutMxn": 0,
"startDate": "2026-04-17",
"endDate": "2026-04-17"
}See also
Generated from ecosystem-sdk/packages/mcp-server/src/registry/events.json. Do not edit by hand.