Overview
The Update Browser Check endpoint allows you to modify existing browser monitoring checks, including Playwright scripts, execution settings, scheduling, and monitoring locations. Common Use Cases:- Script Updates
- Performance Optimization
- Schedule Modifications
- Environment Changes
Authorizations
The Checkly Public API uses API keys to authenticate requests. You can get the API Key here.
Your API key is like a password: keep it secure!
Authentication to the API is performed using the Bearer auth method in the Authorization header and using the account ID.
For example, set Authorization header while using cURL:
curl -H "Authorization: Bearer [apiKey]" "X-Checkly-Account: [accountId]"
Headers
Your Checkly account ID, you can find it at https://app.checklyhq.com/settings/account/general
Path Parameters
Query Parameters
Determines whether a new check will automatically be added as a subscriber to all existing alert channels when it gets created.
Body
The name of the check.
"Check"
Determines if the check is running or not.
Determines if any notifications will be send out when a check fails and/or recovers.
[Deprecated] Retry failed check runs. This property is deprecated, and retryStrategy
can be used instead.
Allows to invert the behaviour of when a check is considered to fail. Allows for validating error status like 404.
An array of one or more data center locations where to run this check.
["us-east-1", "eu-central-1"]
Tags for organizing and filtering checks.
["production"]
Alert settings.
When true, the account level alert setting will be used, not the alert setting defined on this check.
The id of the check group this check is part of.
null
The position of this check in a check group. It determines in what order checks are run when a group is triggered from the API or from CI/CD.
x >= 0
null
The runtime version, i.e. fixed set of runtime dependencies, used to execute this check.
2025.04
, 2024.09
, 2024.02
, 2023.09
, 2023.02
, 2022.10
List of alert channel subscriptions.
[]
The strategy to determine how failed checks are retried.
When true, the check will run in parallel in all selected locations.
Key/value pairs for setting environment variables during check execution. Use global environment variables whenever possible.
50
[]
How often the check should run in minutes.
1
, 2
, 5
, 10
, 15
, 30
, 60
, 120
, 180
, 360
, 720
, 1440
A valid piece of Node.js javascript code describing a browser interaction with the Playwright frameworks.
"const { chromium } = require(\"playwright\");\n(async () => {\n\n // launch the browser and open a new page\n const browser = await chromium.launch();\n const page = await browser.newPage();\n\n // navigate to our target web page\n await page.goto(\"https://danube-webshop.herokuapp.com/\");\n\n // click on the login button and go through the login procedure\n await page.click(\"#login\");\n await page.type(\"#n-email\", \"user@email.com\");\n await page.type(\"#n-password2\", \"supersecure1\");\n await page.click(\"#goto-signin-btn\");\n\n // wait until the login confirmation message is shown\n await page.waitForSelector(\"#login-message\", { visible: true });\n\n // close the browser and terminate the session\n await browser.close();\n})();"
Path of the script in the runtime.
An array of one or more private locations where to run the check.
["data-center-eu"]
An array of BCR dependency files.
A valid fully qualified domain name (FQDN) to check its SSL certificate.
"www.acme.com"
Response
Successful
The name of the check.
"Check"
A valid piece of Node.js javascript code describing a browser interaction with the Playwright frameworks.
"e435c01a-0d6c-4cc4-baae-a5c12961aa69"
Determines if the check is running or not.
Determines if any notifications will be send out when a check fails and/or recovers.
[Deprecated] Retry failed check runs. This property is deprecated, and retryStrategy
can be used instead.
Allows to invert the behaviour of when a check is considered to fail. Allows for validating error status like 404.
An array of one or more data center locations where to run this check.
["us-east-1", "eu-central-1"]
Tags for organizing and filtering checks.
["production"]
Alert settings.
When true, the account level alert setting will be used, not the alert setting defined on this check.
The id of the check group this check is part of.
null
The position of this check in a check group. It determines in what order checks are run when a group is triggered from the API or from CI/CD.
x >= 0
null
The runtime version, i.e. fixed set of runtime dependencies, used to execute this check.
2025.04
, 2024.09
, 2024.02
, 2023.09
, 2023.02
, 2022.10
The strategy to determine how failed checks are retried.
When true, the check will run in parallel in all selected locations.
BROWSER
How often the check should run in minutes.
1
, 2
, 5
, 10
, 15
, 30
, 60
, 120
, 180
, 360
, 720
, 1440
A valid fully qualified domain name (FQDN) to check its SSL certificate.
"www.acme.com"
An array of one or more private locations where to run the check.
["data-center-eu"]
Key/value pairs for setting environment variables during check execution. Use global environment variables whenever possible.
50