``` { "results": [ { "toolCallId": "",...
# general-english
d
Copy code
{
  "results": [
    {
      "toolCallId": "",
      "result": "start: 24-09-2024 09:00 end: 24-09-2024 09:30 | start: 25-09-2024 09:00 end: 25-09-2024 10:00 | start: 25-09-2024 13:00 end: 25-09-2024 14:00 | start: 26-09-2024 11:00 end: 26-09-2024 11:30 | start: 26-09-2024 15:30 end: 26-09-2024 17:00 | start: 27-09-2024 09:00 end: 27-09-2024 09:30 | start: 27-09-2024 10:30 end: 27-09-2024 11:00 | start: 27-09-2024 14:15 end: 27-09-2024 16:00 | start: 28-09-2024 10:00 end: 28-09-2024 10:30 | start: 30-09-2024 09:30 end: 30-09-2024 10:00 | start: 30-09-2024 11:30 end: 30-09-2024 12:30 | start: 30-09-2024 14:30 "
    }
  ]
}
This is how I present the free time slots to VAPI Are you presenting them like this?
Copy code
{
  "2024-09-25": [
    {
      "start": "09:00",
      "end": "09:30"
    },
    {
      "start": "10:00",
      "end": "10:30"
    }
  ],
  "2024-09-26": [
    {
      "start": "11:00",
      "end": "11:30"
    },
    {
      "start": "13:00",
      "end": "13:30"
    }
  ]
}