I am using Nylas get availability
API to fetch users’ free time slots. However, it’s skipping one particular timeslot i.e. from 5am - 5.30 am IST. I’m unable to understand the issue. Sharing the values applied:
participants = [{'email': '<user1 email>', 'start': '00:00', 'end': '23:59', 'weekday': [0, 1, 2, 3, 4, 5, 6], 'timezone': 'UTC'}, {'email': '<user2 email>', 'start': '00:00', 'end': '23:59', 'weekday': [0, 1, 2, 3, 4, 5, 6], 'timezone': 'UTC'}]
start = 1755777300
end = 1758326400
Also, sharing the Nylas python sdk function used:
resp = nylas.calendars.get_availability(
request_body={
"participants": participants,
"start_time": start,
"end_time": end,
"interval_minutes": interval,
"duration_minutes": duration,
},
overrides=SHORT_TIMEOUT,
)
Can somebody help with this issue?