---
title: "Enable model AI suggestions schedule"
method: PUT
path: "/v1/models/{modelId}/suggestions/schedule"
tags: ["AI Model Suggestions"]
---

# Enable model AI suggestions schedule

`PUT /v1/models/{modelId}/suggestions/schedule`

<Note>
  This endpoint requires **Organization Admin** permissions.
</Note>

Enable the daily generation schedule for AI model suggestions on a shared model. Suggestions are generated daily at midnight in the specified timezone.

This operation is idempotent: calling it multiple times returns the persisted schedule.

## Path parameters

- `modelId` string, uuid, required

## Request body

- object
  - `timezone` string — IANA timezone string (e.g., `America/New_York`, `Europe/London`, `UTC`). Determines when the daily suggestion generation runs. Defaults to `UTC` if not provided.

## Response `200`

Schedule enabled successfully. Returns the current state of the schedule, or the same state if already enabled.

- object
  - `id` string, uuid, required — Unique identifier for the schedule.
  - `sharedModelId` string, uuid, required — The shared model the schedule generates suggestions for.
  - `status` 'enabled', required
  - `timezone` string, required — IANA timezone the schedule runs in.

## Other responses

- `400` — Bad Request Possible error messages: - `modelId: Invalid UUID` - The model ID is not a valid UUID format - `timezone: Invalid timezone` - The provided timezone is not a valid IANA timezone format
- `403` — Forbidden Possible error messages: - `Permission denied` - User is not an organization admin - `AI is not enabled for this organization` - Organization does not have AI features enabled - `Model must be shared` - The model is not a shared model
- `404` — Not Found Possible error messages: - `Model with id <modelId> does not exist`
- `429` — Too Many Requests - Rate limit exceeded (60 requests/minute)

---

[API](https://skmtc.net/omni/apis/omni-api.md) · [All operations](https://skmtc.net/omni/apis/omni-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/omni/omni-api/revisions/6b02f7349d0e/schema)
