client.models.list_schedules

A method of the Models endpoint.

list_schedules(id: int) ListResponse

Show the model build schedule

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

import civis
client = civis.APIClient()
response = client.models.list_schedules(...)

Warning

The method name <client>.models.list_schedules is deprecated and will be removed at civis-python v3.0.0 (scheduled for February 2027). Please switch to <client>.models.get_schedules for the same method.

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.