When we create ToDo with recurrence pattern using Rest API (as given https://docs.microsoft.com/en-us/graph/api/resources/recurrencepattern?view=graph-rest-1.0), it doesn't take the provided values. This happen in case of recurrence pattern type: relativeYearly & relativeMonthly. Also for rest case, where dayOfMonth is required & provided then API does create the ToDo with default value i.e. 30 rather than requested value.
Sending recurrence object as
recurrence: {
pattern: {
type: 'relativeYearly',
interval: 2,
month: 12,
dayOfMonth: 4
}
}
It creates the ToDo with pattern type as "daily". It seems setting are not applied yet for the API.
Using V1.0 version here. Please guide.