# Recurrence Object Definitions
## Recurrence Object Keys and Values
| Key | Value | Example |
| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------- |
| `type` | **Required**. The meeting's recurrence type:
- `1` — Daily
- `2` — Weekly
- `3` — Monthly
| `2` |
| `repeat_interval` | The meeting's repeat interval: - For a daily interval, a max of `90` days.
- For a weekly interval, a max of `12` weeks.
- For a monthly interval, a max of `3` months.
This value defaults to `1`. | `12` |
| `weekly_days` | **Required only for weekly recurring meetings.** A comma-separated list of the days of the week on which the recurring meeting occurs: - `1` — Sunday
- `2` — Monday
- `3` — Tuesday
- `4` — Wednesday
- `5` — Thursday
- `6` — Friday
- `7` — Saturday
This value defaults to `1`. | `1,3` |
| `monthly_day` | **Required only for monthly recurring meetings.** The day of the month on which a recurring meeting occurs, between `1` to `31`. | `15` |
| `monthly_week` | **Required only for monthly recurring meetings.** The week of the month on which a recurring meeting occurs: - `-1` The last week of the month.
- `1` — The first week.
- `2` — The second week.
- `3` — The third week.
- `4` — The fourth week
. | `1` |
| `monthly_week_day` | **Required only for monthly recurring meetings.** The day of the week on which to schedule the recurring meeting: - `1` — Sunday
- `2` — Monday
- `3` — Tuesday
- `4` — Wednesday
- `5` — Thursday
- `6` — Friday
- `7` — Saturday
| `2` |
| `end_times` | The number of times the recurring meeting will occur before it is canceled, between a value of `1` and `50`. You **cannot** use this key with the `end_date_time` key. To increase this value, contact the [Zoom Support Team](https://support.zoom.us/hc/en-us/articles/201362003). This value defaults to `1`. | `10` |
| `end_date_time` | The recurring meeting's final ending date and time before it is canceled, in UTC format. You **cannot** use this key with the `end_times` key. | `2012-11-25T12:00:00Z` |