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

# Enable the suggestion schedule

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

Enables the daily schedule that generates suggestions for the shared model. Idempotent — re-enabling leaves an existing schedule untouched. Requires organization admin permissions.

## Path parameters

- `modelId` string, uuid, required — UUID of the shared model the suggestions belong to

## Request body

- ScheduleSuggestionsBody
  - `timezone` string — IANA timezone the schedule fires in (e.g. `America/New_York`). Generation currently runs once daily at ~2 AM in this timezone. Defaults to `UTC`.

## Response `200`

The schedule is enabled

- ScheduleSuggestionsResponse
  - `id` string, uuid, required — The schedule (trigger) id.
  - `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` — Invalid timezone or malformed `modelId`
- `401` — Authentication required
- `403` — Feature not enabled, AI disabled, model is not a shared model, or caller lacks organization admin permissions
- `404` — Model not found in this organization
- `405` — Method not allowed

---

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