Integration between Toggl and Airtable

What are you trying to achieve?

I want to automate the retrieval of daily time entries from Toggl into Airtable using Make.com.
This will help me track how much time our team spends on various projects without manual intervention. Specifically, I want to pull only the current day’s time entries (those logged on the same day the automation runs).

Steps taken so far

I’ve successfully connected Toggl and Airtable to Make.com.
I’m using the URL https://track.toggl.com/reports/api/v3/workspace/{workspace ID}/search/time_entries with the POST method and JSON content type. (Of course, I’ve replaced {workspace ID} with the ID of my workspace)
I’m able to retrieve time entries for the entire year using this request content:

{“collapse”:true,“date_format”:“MM/DD/YYYY”,“display_mode”:“date_only”,“duration_format”:“improved”,“hide_amounts”:true,“hide_rates”:true,“time_format”:“h:mm A”,“end_date”:“2025-12-31”,“start_date”:“2025-01-01”,“rounding”:0,“rounding_minutes”:15,“order_by”:“date”,“order_dir”:“asc”,“grouped”:false,“first_row_number”:null}

This works for fetching the full year’s data. However, I need to refine the workflow so that it automatically pulls only today’s entries each day, without updating the start_date and end_date manually in the request content.

When I attempt to use a filter to limit the data to today’s time entries, I get 0 results. Even setting start_date and end_date to today directly doesn’t return data through the filter.

Uploading: Screenshot 2025-01-21 at 16.01.28.png…
Uploading: Screenshot 2025-01-21 at 16.01.52.png…
Uploading: Screenshot 2025-01-21 at 16.02.22.png…
Uploading: Screenshot 2025-01-21 at 16.02.44.png…

Could you please help me implement a dynamic solution for fetching only today’s entries?