{
  "info": {
    "name": "Statuscake — mcp.ai",
    "description": "REST API for the Statuscake MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/statuscake",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "statuscake_create_contact_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact",
            "group"
          ]
        },
        "description": "Tool to create a contact group for alert notifications in StatusCake. Use when you need to set up a new group of notification recipients for monitoring alerts. The group can include email addresses, m",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"ping_url\": \"\",\n  \"integrations\": \"\",\n  \"mobile_numbers\": \"\",\n  \"email_addresses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_create_heartbeat_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/heartbeat/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "heartbeat",
            "test"
          ]
        },
        "description": "Tool to create a heartbeat check in StatusCake. Use when you need to set up monitoring for services that send periodic pings. A heartbeat check monitors whether your service is sending regular \"heartb",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"host\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"paused\": false,\n  \"period\": 0,\n  \"contact_groups\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_create_pagespeed_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/pagespeed/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "pagespeed",
            "test"
          ]
        },
        "description": "Tool to create a new pagespeed check in StatusCake. Use when you need to set up performance monitoring for a website URL with specific check frequency and region. Returns the ID of the newly created t",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"paused\": false,\n  \"region\": \"\",\n  \"check_rate\": 0,\n  \"website_url\": \"\",\n  \"alert_bigger\": 0,\n  \"alert_slower\": 0,\n  \"alert_smaller\": 0,\n  \"contact_groups\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_create_uptime_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/uptime/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "uptime",
            "test"
          ]
        },
        "description": "Tool to create a new uptime monitoring check in StatusCake. Use when you need to set up monitoring for a website or server. Supports various check types including HTTP, PING, TCP, DNS, and more. Retur",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"host\": \"\",\n  \"name\": \"\",\n  \"port\": 0,\n  \"tags\": \"\",\n  \"paused\": false,\n  \"dns_ips\": \"\",\n  \"regions\": \"\",\n  \"timeout\": 0,\n  \"use_jar\": false,\n  \"post_raw\": \"\",\n  \"post_body\": \"\",\n  \"test_type\": \"\",\n  \"check_rate\": 0,\n  \"dns_server\": \"\",\n  \"user_agent\": \"\",\n  \"do_not_find\": false,\n  \"find_string\": \"\",\n  \"website_url\": \"\",\n  \"confirmation\": 0,\n  \"trigger_rate\": 0,\n  \"custom_header\": \"\",\n  \"basic_password\": \"\",\n  \"basic_username\": \"\",\n  \"contact_groups\": \"\",\n  \"final_endpoint\": \"\",\n  \"include_header\": false,\n  \"enable_ssl_alert\": false,\n  \"follow_redirects\": false,\n  \"status_codes_csv\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_delete_contact_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contact/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contact",
            "group"
          ]
        },
        "description": "Tool to delete a contact group. Use when you need to remove an existing contact group by its ID after confirming its existence.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_delete_heartbeat_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/heartbeat/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "heartbeat",
            "test"
          ]
        },
        "description": "Permanently deletes a StatusCake heartbeat check. Use this to remove heartbeat monitoring tests that are no longer needed. This operation is irreversible - the heartbeat check and all its historical d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_delete_pagespeed_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/pagespeed/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "pagespeed",
            "test"
          ]
        },
        "description": "Permanently deletes a StatusCake PageSpeed test. Use this to remove PageSpeed tests that are no longer needed. This operation is irreversible - the test and all its historical data will be removed. Th",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_delete_ssl_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/ssl/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "ssl",
            "test"
          ]
        },
        "description": "Tool to delete an SSL check with the given ID. Use when you need to permanently remove an SSL monitoring test from StatusCake.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_delete_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "test"
          ]
        },
        "description": "Permanently deletes a StatusCake uptime monitoring test. Use this to remove tests that are no longer needed. This operation is irreversible - the test and all its historical data will be removed. The ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_all_contact_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/contact/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "contact",
            "groups"
          ]
        },
        "description": "Retrieves a paginated list of contact groups for alert notifications. Contact groups define who receives alerts when monitoring tests fail. Returns group names, email addresses, mobile numbers, and in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_all_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "locations"
          ]
        },
        "description": "Retrieves all available uptime monitoring server locations from StatusCake. Use this tool to: - List all monitoring locations to show users available regions - Get region_code values needed when creat",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_all_pagespeed_tests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/pagespeed/tests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "pagespeed",
            "tests"
          ]
        },
        "description": "Tool to retrieve all PageSpeed tests. Use when you need to list existing PageSpeed performance tests in StatusCake after authenticating.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"page_size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_all_tests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/all/tests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "all",
            "tests"
          ]
        },
        "description": "Tool to retrieve a list of all tests. Use when you need to list your monitoring tests in StatusCake. Results reflect only pre-configured tests; missing results or stale check data do not indicate real",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"tags\": \"\",\n  \"limit\": 0,\n  \"uptime\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_contact_group_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contact/group/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contact",
            "group",
            "details"
          ]
        },
        "description": "Tool to retrieve details of a specific contact group. Use when you need group metadata by providing its ID. Example: \"Get details for contact group 12345\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"contact_group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_heartbeat_checks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/heartbeat/checks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "heartbeat",
            "checks"
          ]
        },
        "description": "Tool to list heartbeat checks. Use when you need to retrieve all heartbeat monitoring tests for your account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_heartbeat_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/heartbeat/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "heartbeat",
            "test"
          ]
        },
        "description": "Tool to retrieve details of a specific heartbeat check. Use when you need configuration and status of a heartbeat test by providing its ID. Example: \"Get heartbeat test details for 7884186\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_pagespeed_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/pagespeed/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "pagespeed",
            "test"
          ]
        },
        "description": "Tool to retrieve details of a specific pagespeed check. Use when you need configuration and status of a pagespeed test by providing its ID. Example: \"Get pagespeed test details for 122582\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_ssl_check_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ssl/check/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ssl",
            "check",
            "details"
          ]
        },
        "description": "Tool to retrieve details of a specific SSL check. Use when you need configuration and status of an SSL test by providing its ID. Example: \"Get SSL check details for 123\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_ssl_checks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/ssl/checks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "ssl",
            "checks"
          ]
        },
        "description": "Retrieve a paginated list of SSL checks configured in your StatusCake account. Use this action to: - List all SSL certificate monitors - Check certificate statuses across your monitored domains - Revi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_get_uptime_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/uptime/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "uptime",
            "test"
          ]
        },
        "description": "Tool to retrieve details of a specific uptime test. Use when you need configuration and status of an uptime check by providing its ID. Example: \"Get uptime test details for 7884184\".",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_list_pagespeed_monitoring_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pagespeed/monitoring/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pagespeed",
            "monitoring",
            "locations"
          ]
        },
        "description": "Retrieves all available PageSpeed monitoring server locations from StatusCake. Use when you need to list regions for PageSpeed test configuration or check server availability.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"location\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_list_pagespeed_test_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/pagespeed/test/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "pagespeed",
            "test",
            "history"
          ]
        },
        "description": "Tool to retrieve pagespeed check history for a given test ID. Use when you need to analyze historical performance data for a specific pagespeed test.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": 0,\n  \"limit\": 0,\n  \"before\": 0,\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_list_uptime_test_alerts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/uptime/test/alerts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "uptime",
            "test",
            "alerts"
          ]
        },
        "description": "Tool to retrieve a list of alerts for a specific uptime check. Use when you need to view historical alerts and status changes for an uptime test.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": 0,\n  \"limit\": 0,\n  \"before\": 0,\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_list_uptime_test_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/uptime/test/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "uptime",
            "test",
            "history"
          ]
        },
        "description": "Tool to retrieve uptime check history for a given test ID. Use when you need to view historical results of uptime monitoring checks. Supports pagination and time-based filtering.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": 0,\n  \"limit\": 0,\n  \"before\": 0,\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_list_uptime_test_periods",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/uptime/test/periods",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "uptime",
            "test",
            "periods"
          ]
        },
        "description": "Tool to retrieve a list of uptime check periods for a specific test. Use when you need to view the historical up/down periods for an uptime check.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": 0,\n  \"limit\": 0,\n  \"before\": 0,\n  \"test_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_update_contact_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/contact/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "contact",
            "group"
          ]
        },
        "description": "Updates an existing contact group's configuration in StatusCake. Use this tool when you need to modify the name, email addresses, mobile numbers, or integrations of an existing contact group. At least",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"integrations\": \"\",\n  \"mobile_numbers\": \"\",\n  \"email_addresses\": \"\",\n  \"contact_group_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_update_heartbeat_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/heartbeat/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "heartbeat",
            "test"
          ]
        },
        "description": "Tool to update an existing heartbeat check with new parameters. Use when you need to modify the name, monitoring period, tags, contact groups, host, or pause status of a heartbeat check.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"host\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"paused\": false,\n  \"period\": 0,\n  \"test_id\": \"\",\n  \"contact_groups\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_update_pagespeed_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/pagespeed/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "pagespeed",
            "test"
          ]
        },
        "description": "Updates a pagespeed check with the given parameters. Use when you need to modify the configuration of an existing pagespeed monitoring test in StatusCake. At least one field besides test_id should be ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"paused\": false,\n  \"region\": \"\",\n  \"test_id\": \"\",\n  \"check_rate\": 0,\n  \"website_url\": \"\",\n  \"alert_bigger\": 0,\n  \"alert_slower\": 0,\n  \"alert_smaller\": 0,\n  \"contact_groups\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_update_ssl_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/ssl/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "ssl",
            "test"
          ]
        },
        "description": "Tool to update an SSL check with new configuration parameters. Use when modifying SSL monitoring settings like check frequency, alert preferences, or contact groups. Example: \"Update SSL check 123 to ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"paused\": false,\n  \"test_id\": \"\",\n  \"alert_at\": \"\",\n  \"hostname\": \"\",\n  \"check_rate\": 0,\n  \"user_agent\": \"\",\n  \"alert_mixed\": false,\n  \"website_url\": \"\",\n  \"alert_broken\": false,\n  \"alert_expiry\": false,\n  \"alert_reminder\": false,\n  \"contact_groups\": \"\",\n  \"follow_redirects\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "statuscake_update_uptime_test",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/uptime/test",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "uptime",
            "test"
          ]
        },
        "description": "Updates an uptime check with the given parameters. Use when you need to modify configuration of an existing uptime monitoring test such as check frequency, URL, tags, contact groups, or other settings",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"host\": \"\",\n  \"name\": \"\",\n  \"port\": 0,\n  \"tags\": \"\",\n  \"paused\": false,\n  \"dns_ips\": \"\",\n  \"regions\": \"\",\n  \"test_id\": \"\",\n  \"timeout\": 0,\n  \"use_jar\": false,\n  \"post_raw\": \"\",\n  \"post_body\": \"\",\n  \"check_rate\": \"\",\n  \"dns_server\": \"\",\n  \"user_agent\": \"\",\n  \"do_not_find\": false,\n  \"find_string\": \"\",\n  \"website_url\": \"\",\n  \"confirmation\": 0,\n  \"trigger_rate\": 0,\n  \"custom_header\": \"\",\n  \"basic_password\": \"\",\n  \"basic_username\": \"\",\n  \"contact_groups\": \"\",\n  \"final_endpoint\": \"\",\n  \"include_header\": false,\n  \"enable_ssl_alert\": false,\n  \"follow_redirects\": false,\n  \"status_codes_csv\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}