The methods you previously shared with me are unfortunately not working at all. None of the API routes or booking endpoints seem to be responding correctly from my side.
I would really appreciate it if you could please share the exact API routes and endpoints for fetching booking details via email in SimpleBook, and also guide me on how you are testing them in Postman. If possible, please provide a screenshot or a short explanation of how you are sending the request in Postman (including method type, headers, body, etc.) so that I can at least retrieve one booking successfully and confirm whether the issue is technical on my side or from your end.
I have attached a video showing how I am making the request from Postman and the error I am receiving. Kindly review it and test the same from your end.
I have already shared the booking details with your team earlier. Please check using those details and let me know the correct working approach.
Then im getting this error
http status code : 500
with messge : The application processed the request but returned a blank response. Refer to the HTTP status code above for details.
Wrong Header for the Method: The method getBookingDetails belongs to the Public API, but the user is passing X-User-Token in the headers. X-User-Token is strictly for the Admin API. The Public API expects the header to be named X-Token
Option 1: Use the Admin API
Since they are already generating an X-User-Token (Admin Token), they should use the Admin endpoint and the Admin method for fetching a booking.
URL:https://user-api.simplybook.pro/admin/(Notice the /admin/ at the end)
Headers: * X-Company-Login: madrcuae
X-User-Token: [Their_Token]
Content-Type: application/json
Body: The Admin API’s method is getBooking (not getBookingDetails) and it only requires the Booking ID. It does not require the booking hash.
If they specifically want to use the public getBookingDetails method on the root endpoint, they need to fix their authentication token.
URL:https://user-api.simplybook.pro/
Headers: * X-Company-Login: madrcuae
X-Token: [Their_Public_Token](They must change X-User-Token to X-Token, and they must ensure this token was generated using the getToken method, not getUserToken)
Unfortunately we are not able to check your code and see if md5 was calculated correctly. Please do a call according to documentation we provide on our website API documentation | SimplyBook.me Online Scheduling
I know you have documentation but why you send every time this documentation even these are not user friendly . Please tell me the booking route like when user create the booking what is the api webhook to get the booking when new booking created . Im using iside pabbly node i dont know end poit they used but im getting ALgo sha256 instead of the md5