Resume Cron

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 2025-06-20 16:21:48 +0530 +0530