monitors

Get monitors by team

Get monitors filtered by team with optional parameters

get/monitors/team

Query parameters

'http' | 'ping' | 'pagespeed' | 'docker' | 'hardware' | 'port' | 'game' | 'grpc' | 'websocket'
OR
string[]

Filter by monitor type

filterstring

Search filter value

Response

Team monitors retrieved successfully

successboolean required
msgstring required

Example response

{
  "success": true,
  "msg": "Operation completed successfully",
  "data": {
    "monitors": [
      {
        "_id": "64f123a456b789012c345def",
        "name": "My Website Monitor",
        "description": "Monitors the main website homepage",
        "url": "https://example.com",
        "interval": 300,
        "isActive": true
      }
    ]
  }
}

Changes