Resume CronAdmin Scope

Note: Ensure you have installed the required package to use this SDK method.

You can pass a previously paused Pre-defined or Dynamic cron’s cron ID or name to the resumeCron() SDK method to resume the cron’s schedule and continue submitting a job to the job pool.

The jobScheduling reference used in the code snippets below is the component instance created to perform these operations.

copy
const resumedCronWithName = await jobScheduling.CRON.resumeCron('test_cron'); // resume cron with cron name
const resumedCronWithId = await jobScheduling.CRON.resumeCron('1234567890'); // resume cron with cron ID

Last Updated 2026-07-02 14:51:41 +0530 IST