Appearance
Create Schedule
Create a new automated schedule for recurring form or task creation. Requires ADMIN permissions.
Parameters
| name * are required parameters | data type | description |
|---|---|---|
body.name* | string | The display name for the schedule |
body.objectId* | string | The object schema ID to create instances from on each run |
body.cron* | string | Cron expression defining the schedule frequency |
body.assigneeIds | string[] | User IDs to assign to created instances |
body.timezone | string | IANA timezone identifier (e.g., America/Toronto) |
Return Value
The created schedule configuration.
Examples
bash
curl -X POST "https://app.wombat.software/api/{targetPath}/schedule" \
-H "Content-Type: application/json" \
-H "Authentication: Bearer ..." \
-d '{"name": "Weekly Safety Check", "objectId": "schema123", "cron": "0 8 * * 1"}'ENDPOINTS
post
/api/{targetPath}/schedule