getDeployments
Retrieve deployment details from Vercel by specifying app, project, target, or timestamps. Filter by state, users, or team for precise results.
Instructions
Lists deployments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app | No | Application name | |
from | No | Timestamp to list deployments from | |
limit | No | Limit on number of deployments to return | |
projectId | No | Project ID | |
since | No | Timestamp to get deployments from | |
slug | No | Slug | |
state | No | Deployment state | |
target | No | Deployment target | |
teamId | No | Team ID | |
to | No | Timestamp to list deployments until | |
until | No | Timestamp to get deployments until | |
users | No | Filter by users |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"app": {
"description": "Application name",
"type": "string"
},
"from": {
"description": "Timestamp to list deployments from",
"type": "number"
},
"limit": {
"description": "Limit on number of deployments to return",
"type": "number"
},
"projectId": {
"description": "Project ID",
"type": "string"
},
"since": {
"description": "Timestamp to get deployments from",
"type": "number"
},
"slug": {
"description": "Slug",
"type": "string"
},
"state": {
"description": "Deployment state",
"type": "string"
},
"target": {
"description": "Deployment target",
"type": "string"
},
"teamId": {
"description": "Team ID",
"type": "string"
},
"to": {
"description": "Timestamp to list deployments until",
"type": "number"
},
"until": {
"description": "Timestamp to get deployments until",
"type": "number"
},
"users": {
"description": "Filter by users",
"type": "string"
}
},
"type": "object"
}