mongodb pause ttl

The following command can be used to pause mongodb ttl for 86400 seconds (1 day)
db.adminCommand({setParameter:1, ttlMonitorSleepSecs: 86400})

The following to disable TTL and enable it later on:
db.adminCommand({setParameter:1, ttlMonitorEnabled:false});