Update Monitor
PUT
/monitors/{monitor_uid}
Monitors
uid
. Only the monitor name and its schedule can be updated.cron
values are:Frequency | Cron Pattern |
---|---|
Every 5 minutes | */5 * * * * |
Every 30 minutes | */30 * * * * |
Every Hour | 0 */1 * * * |
Every 6 Hours | 0 */6 * * * |
Every day at 5pm | 0 17 * * * |
Every Monday at 12pm | 0 12 * * MON |
Every weekday (Monday - Friday) at 6am | 0 6 * * MON-FRI |
timezone
value, check this list of time zones.Requires API Key as X-Api-Key
request header orapikey
URL query parameter.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.getpostman.com/monitors/' \
--header 'Content-Type: application/json' \
--data-raw '{
"monitor": {
"name": "Updated Monitor Name",
"schedule": {
"cron": "*/5 * * * *",
"timezone": "America/Chicago"
}
}
}'
Response Response Example
{
"monitor": {
"id": "1e6b6e2a-c2ad-4090-b750-0df4e6624352",
"name": "Updated Monitor Name",
"uid": "5852-1e6b6e2a-c2ad-4090-b750-0df4e6624352"
}
}
Request
Path Params
monitor_uid
string
required
Body Params application/json
Responses
Modified at 2023-08-15 05:41:03