Append booking data
Overview
Storing bookings
"account_id": 3,
"email: "johnsmith@gmail.com",
//...etc...
"bookings" : [
{
"source_id" : 1, // Website, In-house etc.
"party_size" : 10, // how many guests in this booking
"stage_value" : 1, // New, complete, cancelled etc
"type_name" : "General Booking", // General booking, Birthday etc.
"unit_id" : 67,
"party_datetime" : "2021-04-27 20:30:00", // seated date
"enquiry_datetime" : "2021-04-27 21:00:06", // enquiry date
"deposit_paid" : 0, // if applicable
"hpbr_drink" : 0, // deposit split against drink
"hpbr_food" : 0, // deposit split against food
"hpbr_entertainment" : 0, // deposit split against entertainment
"booking_reference" : "4355-GH3TG-AERA", // unique booking reference for booking
"provider_id" : 5, // this ID is unique to the partner - see your airship contact
"table_numbers": [
"1",
"24",
"34"
],
"data": {
"element_01" : "juice", // dynamic field content that can be stored against reservation
}
"notes" : [ // optional notes
{
"text" : "Test note on bookingID 5",
"time" : "2021-04-27 21:00:06"
}
]
}
]What are data_elements?
Last updated