Create a cron job
create_jobCreate a scheduled cron job that requests a target URL, with optional HTTP method, headers, body, and notifications. Only the URL is required; omitted schedule options run every minute.
Instructions
Create a new cron job on cron-job.org. Only 'url' is mandatory; omitted schedule fields default to 'every unit' ([-1]), so an empty schedule runs every minute of every day.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Target URL the job requests | |
| auth | No | ||
| body | No | Request body to send (for POST/PUT/PATCH) | |
| title | No | Human-readable job name | |
| enabled | No | Whether the job is active (default true) | |
| headers | No | Extra request headers to send | |
| folderId | No | Folder to place the job in | |
| schedule | No | ||
| notification | No | ||
| requestMethod | No | 0=GET 1=POST 2=OPTIONS 3=HEAD 4=PUT 5=DELETE 6=TRACE 7=CONNECT 8=PATCH | |
| saveResponses | No | Save response headers/body for each execution | |
| requestTimeout | No | Seconds before the request is aborted | |
| redirectSuccess | No | Treat 3xx redirects as success |