I am writing a SSRS WEb Service app to schedule a dialy and monthly schedule. I am able to create a weekly schedule using the following XML:
string eventType = "TimedSubscription";string scheduleXml = @"<ScheduleDefinition>"; scheduleXml += @"<StartDateTime>2016-04-11T02:04:00</StartDateTime><WeeklyRecurrence><WeeksInterval>1</WeeksInterval>"; scheduleXml += @"<DaysOfWeek><Monday>True</Monday><Tuesday>True</Tuesday><Wednesday>True</Wednesday><Thursday>True</Thursday><Friday>True</Friday></DaysOfWeek>"; scheduleXml += @"</WeeklyRecurrence></ScheduleDefinition>";
Where can I find the syntax for Daily and Monthly scheduling?