kintone triggers on people, not on time
Cybozu's own developer network states it plainly: kintone has no feature for running integration processing on a schedule, so you need a mechanism to run it. Their recommended answer is cli-kintone driven by cron on Linux, Task Scheduler on Windows, or AWS Lambda where neither exists. Customization JavaScript is not an option here because it only runs when somebody opens the page.
- Nightly aggregation, month-end processing, and bulk updates all need an external runner.
- cron gives you execution and nothing else: no retry, no alert, no history, no dependencies.
- The failure mode everyone reports is the same one: the sync died and nobody noticed until a user complained.