client.models.get_schedules

A method of the Models endpoint.

get_schedules(id: int) Response

Show the model build schedule

API URL: GET /models/{id}/schedules

import civis
client = civis.APIClient()
response = client.models.get_schedules(...)
Parameters:
idint

The ID of the model associated with this schedule.

Returns:
civis.Response
  • idint

    The ID of the model associated with this schedule.

  • schedulecivis.Response
    • scheduledbool

      If the item is scheduled.

    • scheduled_daysList[int]

      Days of the week, based on numeric value starting at 0 for Sunday. Mutually exclusive with scheduledDaysOfMonth

    • scheduled_hoursList[int]

      Hours of the day it is scheduled on.

    • scheduled_minutesList[int]

      Minutes of the day it is scheduled on.

    • scheduled_runs_per_hourint

      Deprecated in favor of scheduled minutes.

    • scheduled_days_of_monthList[int]

      Days of the month it is scheduled on, mutually exclusive with scheduledDays.