Online Bookings

Returns the total number of online bookings and related activity for the current year.

image-png-Mar-22-2024-01-24-05-8317-PM /appointments/online-bookings

https://api.oauth.pabau.com/{api_key}/appointments/online-bookings

Request

 

Query Parameters:  
api_key *  
per_page (int) If not sent, the default is 20. Maximum 50
page (int) If not sent, the first 20 result will be sent
order ASC or DESC. Default DESC

Response sample

application/json

{
"last_12_months": {
"January": 10,
"February": 0,
"March": 0,
"April": 1,
"May": 0,
"June": 2,
"July": 4,
"August": 0,
"September": 2,
"October": 0,
"November": 0,
"December": 0
},
"online_booking_activity": [
{
"client_id": 34202259,
"employee": {
"full_name": "Jane Doe",
"avatar": "image.jpeg"
},
"appointment": {
"created_date": "Fri 05 January 09:23",
"appointment_date_time": "Fri 05 January 12:00",
"service": "Hydrafacial Acne Single",
"client_name": "Alice Burton",
"appointment_status": "Waiting",
"location": "Emma's Clinic"
}
},
{
"client_id": 34202259,
"employee": {
"full_name": "Jane Doe",
"avatar": "image.jpeg"
},
"appointment": {
"created_date": "Fri 05 January 14:31",
"appointment_date_time": "Fri 05 January 12:45",
"service": "Hydrafacial Acne Single",
"client_name": "Mike Smith",
"appointment_status": "Waiting",
"location": "Emma's Clinic"
}
}
]
}