VercelVercel
Menu

Points all production domains for a project to the given deploy

POSThttps://api.vercel.com/v10/projects/{projectId}/promote/{deploymentId}
Allows users to promote a deployment to production. Note: This does NOT rebuild the deployment. If you need that, then call create-deployments endpoint.
https://api.vercel.com/v10/projects/{projectId}/promote/{deploymentId}
const response = await fetch('https://api.vercel.com/v10/projects/projectId/promote/deploymentId?teamId=string&slug=string', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
},
});
const data = await response.json();
console.log(data);
Response
{}
AuthorizationbearerToken

Default authentication mechanism

projectIdstringRequired
deploymentIdstringRequired
teamIdstringOptional
The Team identifier to perform the request on behalf of.
slugstringOptional
The Team slug to perform the request on behalf of.
201Success
202Success
400One of the provided values in the request query is invalid.
401The request is not authorized.
403You do not have permission to access this resource.
409Error