Migrated from Redmine #1113 | Author: Marc Bernet Status: New | Priority: High, I’m very impatient | Created: 2023-10-05
Hello,
I’m experiencing issues with the getClientBookings call from your API. It’s returning a signature error, and I’m making the request just as outlined in the documentation.
Please make sure you are using “X-Token: [APIKEY]” token you got from loginClient.getToken
$sign = md5($booking->id . $booking->hash . YOUR_API_SECRET_KEY); not client hash
I’m trying to get ALL the bookings from a client so I don’t know any booking->id or booking->hash. In your documentation, the first parameter is the clientId and the second one the signature.
Please use client->id, client->hash instead booking->id, booking->hash.
You received it when you made booking, or when you get client by login/password.
Please use client->id, client->hash instead booking->id, booking->hash.
You received it when you made booking, or when you get client by login/password.
Thanks Dmytro,
This what I did in first instance and I got the signature error: