getDeployment
Retrieve deployment details by ID or URL for Vercel projects, including optional git repository info, team ID, and slug.
Instructions
Gets a deployment by ID or URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploymentId | Yes | The ID or URL of the deployment | |
slug | No | Slug | |
teamId | No | Team ID | |
withGitRepoInfo | No | Include git repository info |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deploymentId": {
"description": "The ID or URL of the deployment",
"type": "string"
},
"slug": {
"description": "Slug",
"type": "string"
},
"teamId": {
"description": "Team ID",
"type": "string"
},
"withGitRepoInfo": {
"description": "Include git repository info",
"type": "string"
}
},
"required": [
"deploymentId"
],
"type": "object"
}