v13
latestOpenAPI 3.0.32026-07-31359869.4 MBchecks
Creates a new Check
Creates a new check. This endpoint must be called with an OAuth2 or it will produce a 400 error.
post/v1/deployments/{deploymentId}/checks
Path parameters
deploymentIdstring required
The deployment to create the check for.
Example:dpl_2qn7PZrx89yxY34vEZPD31Y9XVj6
The deployment to create the check for.
Query parameters
teamIdstring
Example:team_1a2b3c4d5e6f7g8h9i0j1k2l
The Team identifier to perform the request on behalf of.
slugstring
Example:my-team-url-slug
The Team slug to perform the request on behalf of.
Request body
Example request
{
"name": "Performance Check",
"path": "/",
"blocking": true,
"detailsUrl": "http://example.com",
"externalId": "1234abc",
"rerequestable": true
}Response
Example response
{
"id": "chk_1a2b3c4d5e6f7g8h9i0j",
"name": "Performance Check",
"status": "completed",
"conclusion": "succeeded",
"path": "/api/users"
}