Skeddly API
Search
K
Comment on page

ManagedServicesPlanSchedule Object

Description

Specification for a Managed Services Plan's schedule.

Properties

parameters

Additional parameters for the schedule. The object value is dependent on the value of scheduleType.
Type: ScheduleParameters object.
Required: Yes

scheduleType

Repeat type for the schedule.
Type: string
Allowed Values:
  • daily
  • monthly
Required: Yes

timeOfDay

Time of day to execute, in hh:mm:ss format. Time is local to the specified time zone.
Type: string
Required: Yes

timeZoneId

Time zone in which the schedule resides.
Type: string
Required: Yes

Sample JSON

{
"scheduleType": "daily",
"timeOfDay": "12:23:00",
"timeZoneId": "Eastern Standard Time",
"parameters": {
"days": [
"monday",
"tuesday",
"wednesday",
"thursday",
"friday"
]
}
}