> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Bolt API and schedule trigger errors

> Fix errors when triggering Bolt schedules from the API, Python SDK, CLI, or CI pipelines, including schedule name slug and suspended schedule errors.

Use this page for errors returned when triggering Bolt schedules programmatically from the API, Python SDK, CLI, or a CI/CD pipeline.

### Schedule name ('...') does not exist in database

```text theme={"system"}
paradime.client.api_exception.ParadimeAPIException: Schedule name ('285930b6-fdeb-30e5-8b03-cb0b8ad7c508') does not exist in database
```

Your pipeline or script is triggering the schedule by its display name, but the schedule is identified by its slug.

Since the June 2026 slug release, every new schedule gets a unique slug (for example `flowing-pachy-wyy4fs`), and the `schedule_name` parameter in the API and Python SDK is a deprecated alias that expects a slug. Schedules created before the release keep working by name, which is why the same pipeline configuration can work in one workspace and fail in another.

To fix it:

1. Open the schedule in Bolt and click the schedule name on the schedule details screen. The slug is shown there.
2. Replace the display name in your CI variable or script (for example `PARADIME_SCHEDULE_NAME` or `PARADIME_SCHEDULE_SLUG`) with the slug.
3. Re-run the pipeline. No other changes are needed.

See [Bolt API](/products/bolt/bolt-api) and the [Turbo CI setup guides](/products/bolt/ci-cd/turbo-ci/index) for current, slug-based pipeline templates.

### Schedule '...' is suspended and cannot be triggered

The schedule exists but is suspended, so API and CI triggers are rejected.

Open the schedule in Bolt and resume it, then trigger the run again.


## Related topics

- [Trigger Bolt schedules from Dagster](/products/bolt/external-triggers/dagster.md)
- [Trigger Bolt schedules from Airflow](/products/bolt/external-triggers/airflow.md)
- [Understanding schedule types and triggers](/guides/paradime-101/running-dbt-in-production-with-bolt/understanding-schedule-types-and-triggers.md)
- [Bolt API](/developers/graphql-api/api-reference/bolt-api.md)
- [Triggers](/products/bolt/creating-schedules/trigger-types.md)
