Create a cron job
Creates a new scheduled cron job for the application. Jobs can run on a fixed interval or using a custom cron expression.
Authorizations
Bearer token for authentication. Format: 'Bearer {token}'
Headers
Workspace ID (uses default workspace if not provided)
Path Parameters
Application UUID
Body
Create a cron job
Unique cron job identifier
Human-readable display name for the cron job
Schedule type: 'cron' for custom cron expression, 'interval' for predefined intervals
cron, interval Predefined interval: 'every_10_minutes', 'hourly', or 'daily'. Only for interval schedule type.
every_10_minutes, hourly, daily Cron expression (e.g., '0 * * * *' for hourly). Only for cron schedule type.
Shell command to execute (e.g., 'rake db:cleanup', 'python script.py')
Execution time for daily jobs in HH:MM format (24-hour). Only for daily interval.
Minute component for scheduling (0-59)
Hour component for scheduling (0-23)
Response
Create a cron job
Api_V1_Entities_Cronjob model
Cron job UUID
Cron job name
Human-readable display name
Schedule type (cron, interval)
Interval type (every_10_minutes, hourly, daily)
Hour component
Minute component
Cron expression for custom schedules
Command to execute
Current status (running, stopped)
Name of the most recent run
Status of the most recent run (e.g. running, complete, failed)
Last execution timestamp
Creation timestamp
Last update timestamp

