import { Vercel } from "@vercel/sdk";const vercel = new Vercel({ bearerToken: "<YOUR_BEARER_TOKEN_HERE>",});async function run() { await vercel.projects.requestPromote({ projectId: "<id>", deploymentId: "<id>", teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l", slug: "my-team-url-slug", });}run();
Copy
Ask AI
This response has no body data.
projects
Points all production domains for a project to the given deploy
Allows users to promote a deployment to production. Note: This does NOT rebuild the deployment. If you need that, then call create-deployments endpoint.
POST
/
v10
/
projects
/
{projectId}
/
promote
/
{deploymentId}
requestPromote
Copy
Ask AI
import { Vercel } from "@vercel/sdk";const vercel = new Vercel({ bearerToken: "<YOUR_BEARER_TOKEN_HERE>",});async function run() { await vercel.projects.requestPromote({ projectId: "<id>", deploymentId: "<id>", teamId: "team_1a2b3c4d5e6f7g8h9i0j1k2l", slug: "my-team-url-slug", });}run();