How can i get available booking dates by sevrice_id with Zoho API

How can i get available booking dates by sevrice_id with Zoho API

I do this: 
  1. --header 'Authorization: Zoho-oauthtoken 123'
and get available time slots for selected day.
I need to get available dates by service_id

example:
  1. curl --location --request GET 'https://www.zohoapis.eu/bookings/v1/json/availableslots?service_id=123&staff_id=123' \
  2. --header 'Authorization: Zoho-oauthtoken 123'
response:
  1. {
      "response": {
        "returnvalue": {
          "reponse": true,
          "data": [
            "30-Nov-2021",
            "31-Nov-2021",
    ...
How can i do it?