ReportSchedules Test
Reporting/ReportSchedules/CalculateNextRun
Verify the next run for a schedule's recurrence pattern by passing the pattern. Returns its calculated next run date/time.
Http Verb POST
Resource URL https://ts-stg-appgw.calacademy.org/TessituraService/Reporting/ReportSchedules/CalculateNextRun

URI Parameters

This resource has no URI (Query) parameters.

Request Body

Request object type : ReportScheduleNextRequest

Request object type ReportScheduleNextRequest has the following properties.
Property Name Data Type Length Required Readonly Notes
DayOfWeek integer Y
DayWeekNumber integer Y
EndDate date Y
EndTime date Y
Interval integer Y
StartDate date Y
StartTime date Y
Type string Y
{
  "DayOfWeek": 1,
  "DayWeekNumber": 2,
  "EndDate": "2025-04-24T04:22:55.5299313-07:00",
  "EndTime": "2025-04-24T04:22:55.5299313-07:00",
  "Interval": 3,
  "StartDate": "2025-04-24T04:22:55.5299313-07:00",
  "StartTime": "2025-04-24T04:22:55.5299313-07:00",
  "Type": "sample string 4"
}
<ReportScheduleNextRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <DayOfWeek>1</DayOfWeek>
  <DayWeekNumber>2</DayWeekNumber>
  <EndDate>2025-04-24T04:22:55.5299313-07:00</EndDate>
  <EndTime>2025-04-24T04:22:55.5299313-07:00</EndTime>
  <Interval>3</Interval>
  <StartDate>2025-04-24T04:22:55.5299313-07:00</StartDate>
  <StartTime>2025-04-24T04:22:55.5299313-07:00</StartTime>
  <Type>sample string 4</Type>
</ReportScheduleNextRequest>

Response object type : ReportScheduleNextRun

Response object type ReportScheduleNextRun has the following properties.
Property Name Data Type Length Required Readonly Notes
NextDateTime date N Next request date calculated for schedule pattern.
{
  "NextDateTime": "2025-04-24T04:22:55.5299313-07:00"
}
<ReportScheduleNextRun xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <NextDateTime>2025-04-24T04:22:55.5299313-07:00</NextDateTime>
</ReportScheduleNextRun>
Change Version Description Contract Old New
Resource Added 15.0.0 New resource added. ReportSchedules