0👍
✅
The closest thing to what you’ve shown in your question is a simple recurring event.
For example:
{
status: "Pending",
title: "title",
startRecur: "2022-10-19",
endRecur: "2022-10-21",
startTime: '10:00',
endTime: '12:00',
}
This will create a series of events occurring between the times specified in startTime
and endTime
, which will show on every day between startRecur
and endRecur
(the end date being exclusive). See the documentation link above for more details and options.
Source:stackexchange.com