Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 3.96 KB

Recurrence.md

File metadata and controls

16 lines (13 loc) · 3.96 KB

# Recurrence

Properties

Name Type Description Notes
end_date_time \DateTime Select the final date on which the meeting will recur before it is canceled. Should be in UTC time, such as 2017-11-25T12:00:00Z. (Cannot be used with "end_times".) [optional]
end_times int Select how many times the meeting should recur before it is canceled. (Cannot be used with "end_date_time".) [optional] [default to 1]
monthly_day int Use this field only if you're scheduling a recurring meeting of type `3` to state which day in a month, the meeting should recur. The value range is from 1 to 31. For instance, if you would like the meeting to recur on 23rd of each month, provide `23` as the value of this field and `1` as the value of the `repeat_interval` field. Instead, if you would like the meeting to recur every three months, on 23rd of the month, change the value of the `repeat_interval` field to `3`. [optional] [default to 1]
monthly_week int Use this field only if you're scheduling a recurring meeting of type `3` to state the week of the month when the meeting should recur. If you use this field, you must also use the `monthly_week_day` field to state the day of the week when the meeting should recur. <br>`-1` - Last week of the month.<br>`1` - First week of the month.<br>`2` - Second week of the month.<br>`3` - Third week of the month.<br>`4` - Fourth week of the month. [optional]
monthly_week_day int Use this field only if you're scheduling a recurring meeting of type `3` to state a specific day in a week when the monthly meeting should recur. To use this field, you must also use the `monthly_week` field. <br>`1` - Sunday.<br>`2` - Monday.<br>`3` - Tuesday.<br>`4` - Wednesday.<br>`5` - Thursday.<br>`6` - Friday.<br>`7` - Saturday. [optional]
repeat_interval int Define the interval at which the meeting should recur. For instance, if you would like to schedule a meeting that recurs every two months, you must set the value of this field as `2` and the value of the `type` parameter as `3`. For a daily meeting, the maximum interval you can set is `90` days. For a weekly meeting the maximum interval that you can set is of `12` weeks. For a monthly meeting, there is a maximum of `3` months. [optional]
type int Recurrence meeting types:<br>`1` - Daily.<br>`2` - Weekly.<br>`3` - Monthly.
weekly_days string This field is required if you're scheduling a recurring meeting of type `2` to state which day(s) of the week the meeting should repeat. <br> <br> The value for this field could be a number between `1` to `7` in string format. For instance, if the meeting should recur on Sunday, provide `&quot;1&quot;` as the value of this field.<br><br> Note: If you would like the meeting to occur on multiple days of a week, you should provide comma separated values for this field. For instance, if the meeting should recur on Sundays and Tuesdays provide `&quot;1,3&quot;` as the value of this field. <br>`1` - Sunday. <br>`2` - Monday.<br>`3` - Tuesday.<br>`4` - Wednesday.<br>`5` - Thursday.<br>`6` - Friday.<br>`7` - Saturday. [optional] [default to '1']

[Back to Model list] [Back to API list] [Back to README]