Skip to main content
POST
/
v1
/
deployments
/
{deploymentId}
/
checks
/
{checkId}
/
rerequest
rerequestCheck
import { Vercel } from "@vercel/sdk"; const vercel = new Vercel({ bearerToken: "<YOUR_BEARER_TOKEN_HERE>", }); async function run() { const result = await vercel.checks.rerequestCheck({ deploymentId: "dpl_2qn7PZrx89yxY34vEZPD31Y9XVj6", checkId: "check_2qn7PZrx89yxY34vEZPD31Y9XVj6", teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l", slug: "my-team-url-slug", }); console.log(result); } run();
{}

Authorizations

Authorization
string
header
required

Default authentication mechanism

Path Parameters

deploymentId
string
required

The deployment to rerun the check for.

Example:

"dpl_2qn7PZrx89yxY34vEZPD31Y9XVj6"

checkId
string
required

The check to rerun

Example:

"check_2qn7PZrx89yxY34vEZPD31Y9XVj6"

Query Parameters

autoUpdate
boolean

Mark the check as running

teamId
string

The Team identifier to perform the request on behalf of.

Example:

"team_1a2b3c4d5e6f7g8h9i0j1k2l"

slug
string

The Team slug to perform the request on behalf of.

Example:

"my-team-url-slug"

Response

The response is of type object.

⌘I