This is an old revision of the document!
This is a SERVER Side API. Who is supporting your website at the moment? If you do not have the ability to make server side API, we can provide this as a CLIENT side script to be copied onto your page.
This is a JSON API.
Accept: application/json\\ Content-Type: application/json\\ Authorization: Basic {user}:{password}
{user}:{password} is Base64 Encoded. See librarires for your server side language.
{"Booking":{ "BookingDteTme":"01-Jan-2018 16:00", "BookingRego":"ABC123", "BookingPhone":"0410123456", "BookingEmail":"john@gmail.com", "BookingName":"John", "BookingSite":"Weeribee" "BookingTags":"WEB", "BookingNotes":"Extra Dirty, Could you quote on Steam Clean", } }
You get back extra fields such as BookingKey and CreatedDteTme.
{"Booking":{ "BookingKey":1, "BookingDteTme":"01-Jan-2018 16:00", "BookingRego":"ABC123", "BookingPhone":"0410123456", "BookingEmail":"john@gmail.com", "BookingName":"John", "BookingTags":"WEB", "BookingSite":"Weeribee", "CreatedDteTme":"01-Jan-2018 11:00" } }
Reading an existing Booking, you only need to supply part of the data such as the Booking Key.
{"Booking":{ "BookingKey":1 } }
If the customer has come to the store then it will return extra data such as the orderkey and orderdtetme
{"Booking":{ "BookingKey":1, "BookingDteTme":"01-Jan-2018 16:00", "BookingRego":"ABC123", "BookingPhone":"0410123456", "BookingEmail":"john@gmail.com", "BookingName":"John", "BookingTags":"WEB", "BookingSite":"Weeribee", "OrderKey":358210, "OrderDteTme":"01-Jan-2018 16:04", "CreatedDteTme":"01-Jan-2018 11:00" } }
Cancel an existing Booking, you only need to supply part of the data such as the Booking Key and the CancelDteTme.
{"Booking":{ "BookingKey":1 "CancelDteTme":"01-Jan-2018 11:00" } }
Regos needs to be stripped of all spaces and symbols.
Use Booking Tags, this can be used in reports to work out where booking might be generated from. If you want to add extra tags like a campaign then comma separate WEB,FACEBOOK