cancelDeployment
Cancel a specific Vercel deployment by providing its deployment ID. Use this tool to halt ongoing deployments for effective project management.
Instructions
Cancels a deployment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | Yes | The ID of the deployment to cancel | |
slug | No | Slug | |
teamId | No | Team ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deploymentId": {
"description": "The ID of the deployment to cancel",
"type": "string"
},
"slug": {
"description": "Slug",
"type": "string"
},
"teamId": {
"description": "Team ID",
"type": "string"
}
},
"required": [
"deploymentId"
],
"type": "object"
}