Skip to content

Create Schedule

Create a new automated schedule for recurring form or task creation. Requires ADMIN permissions.

Parameters

name * are required parametersdata typedescription
body.name*stringThe display name for the schedule
body.objectId*stringThe object schema ID to create instances from on each run
body.cron*stringCron expression defining the schedule frequency
body.assigneeIdsstring[]User IDs to assign to created instances
body.timezonestringIANA 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