hookbase_create_cron_job
Schedule automated HTTP requests at specified intervals using cron expressions. Define URL, method, headers, and payload for recurring webhook or API calls.
Instructions
Create a new scheduled cron job that makes HTTP requests on a schedule.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Display name for the cron job | |
| cron_expression | Yes | Cron expression (e.g., "0 * * * *" for hourly, "0 0 * * *" for daily) | |
| url | Yes | URL to request when the job runs | |
| method | No | HTTP method (default: POST) | |
| headers | No | Custom headers to include | |
| payload | No | Request body (for POST/PUT/PATCH) | |
| timezone | No | Timezone for the schedule (default: UTC) | |
| timeout_ms | No | Request timeout in milliseconds (default: 30000) | |
| description | No | Optional description |