Resume Cron

Note: This SDK is currently in deprecation. Migrate to JavaScript SDK now.

This SDK method can be used to resume the operations of a cron that had been previously paused. This can be done by passing the paused cron id or name to the resumeCron() SDK method.

Note: You can use this method to update details of both Pre-Defined Crons and Dynamic Crons.
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-09-08 16:37:33 +0530 IST