Command Palette
Search for a command to run

Create a cron job

Create a new cron job that runs on a schedule within the project

POST
/auth/v1/seed/{namespace}/projects/{proj}/crons

Path parameters

namespace type: string (required)
The namespace (user or organization) the project belongs to.
proj type: string (required)
The project ID or slug.

Body parameters

name type: string (required)
A unique name for the cron job within the project.
schedule type: string (required)
Cron expression defining the schedule (e.g., `0 2 * * *` for daily at 2 AM UTC).
command type: string (required)
The command to execute on each run.