Overview
Resume a paused monitor to restart monitoring checks. The monitor immediately returns to its active state and resumes the normal check schedule. All configuration remains unchanged from when it was paused.Authentication
All requests must include authentication via:- API Key:
X-API-Key: YOUR_API_KEY
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | Monitor UUID (e.g., mon_1234567890abcdef) |
Request Example
Request Details
| Aspect | Value |
|---|---|
| Content-Type | Not required (no body) |
| Body | Empty |
| Query Parameters | None |
Response
Success Response (200 OK)
Resume Behavior
When a monitor is resumed:- Immediate Activation: Monitor status changes to
active - Check Scheduling: New checks are immediately scheduled
- Next Check: First check scheduled for next interval occurrence
- Notifications: Alerts resume based on new check results
- Configuration: All previous settings are maintained
- Historical Data: Gap in data reflects pause period
- Uptime Calculation: Paused period may affect uptime percentage
Plan Limit Enforcement
Resuming a monitor may be blocked if:- Active Monitor Limit: Organization has reached max active monitors
- Paused Monitor Counts: Paused monitors still count toward limit
Resuming After Maintenance
Resume immediately triggers a check:Data Gap During Pause
When a monitor is paused and then resumed:- Check results dataset shows a gap
- Uptime percentage calculation:
- Option 1: Treats pause period as uptime (historical behavior)
- Option 2: Excludes pause period from calculation
- Check your account settings for configured behavior
- Before pause: 30 successful checks
- Pause: 1 hour (10 expected checks skipped)
- After resume: 30 successful checks
- Total uptime:
(30 + 30) / (30 + 10 + 30)or(30 + 30) / (30 + 30)depending on config
Error Codes
| Code | Status | Description |
|---|---|---|
INVALID_MONITOR_ID | 400 | Missing or invalid monitor ID |
AUTHENTICATION_REQUIRED | 401 | Missing or invalid authentication |
MONITOR_NOT_FOUND | 404 | Monitor not found or already deleted |
MONITOR_LIMIT_REACHED | 403 | Active monitor limit exceeded on plan |
MONITOR_RESUME_FAILED | 500 | Unexpected resume failure |