0
0
Postmantesting~10 mins

Monitor scheduling in Postman - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to set the monitor schedule interval to 5 minutes.

Postman
pm.monitor.schedule = [1];
Drag options to blanks, or click blank then click option'
A"5m"
B"5min"
C5
D"five"
Attempts:
3 left
💡 Hint
Common Mistakes
Using a number without quotes causes an error.
Using incorrect time units like 'min' or words like 'five' is invalid.
2fill in blank
medium

Complete the code to enable the monitor to run only on weekdays.

Postman
pm.monitor.schedule.days = [1];
Drag options to blanks, or click blank then click option'
A["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"]
B["Sat", "Sun"]
C["Sunday"]
D["Monday", "Sunday"]
Attempts:
3 left
💡 Hint
Common Mistakes
Using abbreviations like 'Sat' or 'Sun' instead of full names.
Including weekend days by mistake.
3fill in blank
hard

Fix the error in the code to set the monitor to run at 9 AM daily.

Postman
pm.monitor.schedule.time = [1];
Drag options to blanks, or click blank then click option'
A9
B"09:00:00"
C"09:00"
D"9am"
Attempts:
3 left
💡 Hint
Common Mistakes
Using just '9' as a number instead of a string.
Using '09:00' without seconds causes errors.
4fill in blank
hard

Fill both blanks to configure the monitor to run every 10 minutes only on weekends.

Postman
pm.monitor.schedule = { interval: [1], days: [2] };
Drag options to blanks, or click blank then click option'
A"10m"
B["Monday", "Tuesday"]
C["Saturday", "Sunday"]
D"10min"
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect day names or abbreviations.
Using '10min' instead of '10m' for interval.
5fill in blank
hard

Fill all three blanks to create a monitor schedule that runs every hour at 15 minutes past the hour on weekdays.

Postman
pm.monitor.schedule = { interval: [1], time: [2], days: [3] };
Drag options to blanks, or click blank then click option'
A"1h"
B"00:15:00"
C["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"]
D"15m"
Attempts:
3 left
💡 Hint
Common Mistakes
Using '15m' as time instead of '00:15:00'.
Using abbreviations for days.