Migrated from Redmine #208 | Author: Javier Escribano
Status: New | Priority: High, I’m very impatient | Created: 2018-08-03
Hi,
Is it possible to enable confirmations on bookings through the API without enabling payments?
I want to restrict bookings to use the SECRET_KEY and not using the PUBLIC KEY.
Something like this:
$sign = md5($booking->id . $booking->hash . YOUR_API_SECRET_KEY);
$result = $client->confirmBooking($booking->id, $sign);
I don’t want to let malicious users to book dates into the system without the secret key.
Kind regards,
Javier