A confirmed 1:1 booking made through the host's booking page.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
endsAt
string
datetime
Required
An RFC 3339 formatted timestamp.
guestEmail
string
Optional
No description available.
maxLength: 500 bytesguestName
string
Required
No description available.
maxLength: 300 bytesguestTimezone
string
Optional
No description available.
note
string
Optional
No description available.
maxLength: 3000 bytesstartsAt
string
datetime
Required
An RFC 3339 formatted timestamp.
status
string
Required
No description available.
Allowed:
confirmed, cancelledView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"guestName",
"startsAt",
"endsAt",
"status",
"createdAt"
],
"properties": {
"note": {
"type": "string",
"maxLength": 3000
},
"endsAt": {
"type": "string",
"format": "datetime"
},
"status": {
"enum": [
"confirmed",
"cancelled"
],
"type": "string"
},
"startsAt": {
"type": "string",
"format": "datetime"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"guestName": {
"type": "string",
"maxLength": 300
},
"guestEmail": {
"type": "string",
"maxLength": 500
},
"guestTimezone": {
"type": "string"
}
}
},
"description": "A confirmed 1:1 booking made through the host's booking page."
}