Vercel integration (Developer Tools). Imported from open-connector.
https://api.vercel.com/v2/user
/v2/teams
| Param | Type | Required | Description |
|---|---|---|---|
| limit | integer | optional | Maximum number of results to return. |
| since | integer | optional | Pagination cursor for results created after this timestamp. |
/v2/teams/{teamId}
| Param | Type | Required | Description |
|---|---|---|---|
| teamId | string | required | Vercel team ID or team slug. |
/v10/projects
| Param | Type | Required | Description |
|---|---|---|---|
| limit | integer | optional | Maximum number of results to return. |
| since | integer | optional | Pagination cursor for results created after this timestamp. |
| until | integer | optional | Pagination cursor for results created before this timestamp. |
| repoUrl | string | optional | Repository URL used to filter projects. |
/v9/projects/{idOrName}
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
/v11/projects
| Param | Type | Required | Description |
|---|---|---|---|
| name | string | required | Vercel project name. |
| framework | string | optional | Framework to set on the project. |
| rootDirectory | string | optional | Root directory for the project. |
| nodeVersion | string | optional | Node.js version to use for the project. |
| buildCommand | string | optional | Build command for the project. |
| devCommand | string | optional | Development command for the project. |
| installCommand | string | optional | Install command for the project. |
| outputDirectory | string | optional | Output directory for the project build. |
| directoryListing | boolean | optional | Whether directory listing is enabled for the project. |
| publicSource | boolean | optional | Whether the project source is public. |
| gitForkProtection | boolean | optional | Whether Git fork protection is enabled for the project. |
/v9/projects/{idOrName}
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
| name | string | optional | Vercel project name. |
| framework | string | optional | Framework to set on the project. |
| rootDirectory | string | optional | Root directory for the project. |
| nodeVersion | string | optional | Node.js version to use for the project. |
| buildCommand | string | optional | Build command for the project. |
| devCommand | string | optional | Development command for the project. |
| installCommand | string | optional | Install command for the project. |
| outputDirectory | string | optional | Output directory for the project build. |
| directoryListing | boolean | optional | Whether directory listing is enabled for the project. |
| publicSource | boolean | optional | Whether the project source is public. |
| gitForkProtection | boolean | optional | Whether Git fork protection is enabled for the project. |
/v6/deployments
| Param | Type | Required | Description |
|---|---|---|---|
| projectId | string | optional | Vercel project ID. |
| limit | integer | optional | Maximum number of results to return. |
| since | integer | optional | Pagination cursor for results created after this timestamp. |
| until | integer | optional | Pagination cursor for results created before this timestamp. |
| target | string | optional | Deployment target such as production or preview. |
| state | string | optional | Deployment state to filter by. |
/v13/deployments/{idOrUrl}
| Param | Type | Required | Description |
|---|---|---|---|
| idOrUrl | string | required | Vercel deployment ID or deployment URL. |
| withGitRepoInfo | boolean | optional | When true, include Git repository metadata in the deployment response. |
/v3/deployments/{idOrUrl}/events
| Param | Type | Required | Description |
|---|---|---|---|
| idOrUrl | string | required | Vercel deployment ID or deployment URL. |
| limit | integer | optional | Maximum number of results to return. |
| since | integer | optional | Pagination cursor for results created after this timestamp. |
| until | integer | optional | Pagination cursor for results created before this timestamp. |
| direction | string | optional | Order in which to return deployment events. |
| builds | boolean | optional | When true, include build events in the response. |
/v1/projects/{projectId}/deployments/{deploymentId}/runtime-logs
| Param | Type | Required | Description |
|---|---|---|---|
| projectId | string | required | Vercel project ID. |
| deploymentId | string | required | Vercel deployment ID. |
/v10/projects/{idOrName}/env
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
| gitBranch | string | optional | Git branch name. |
| customEnvironmentId | string | optional | Vercel custom environment ID. |
/v10/projects/{idOrName}/env
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
| key | string | required | Environment variable name. |
| value | string | required | Environment variable value. |
| type | string | required | Environment variable type. |
| target | array | required | Deployment targets that should receive this environment variable. |
| gitBranch | string | optional | Git branch name. |
| comment | string | optional | Optional comment for the environment variable. |
| customEnvironmentIds | array | optional | Custom environment IDs that should receive this environment variable. |
/v9/projects/{idOrName}/env/{id}
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
| id | string | required | Vercel environment variable ID. |
/v9/projects/{idOrName}/domains
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
| limit | integer | optional | Maximum number of results to return. |
| since | integer | optional | Pagination cursor for results created after this timestamp. |
| until | integer | optional | Pagination cursor for results created before this timestamp. |
| gitBranch | string | optional | Git branch name. |
| customEnvironmentId | string | optional | Vercel custom environment ID. |
/v9/projects/{idOrName}/domains/{domain}
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
| domain | string | required | Domain name. |
/v10/projects/{idOrName}/domains
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
| name | string | required | Domain name to add to the project. |
| redirect | string | optional | Redirect target for the domain. |
| gitBranch | string | optional | Git branch name. |
| customEnvironmentId | string | optional | Vercel custom environment ID. |
/v9/projects/{idOrName}/domains/{domain}/verify
| Param | Type | Required | Description |
|---|---|---|---|
| idOrName | string | required | Vercel project ID or project name. |
| domain | string | required | Domain name. |
/v6/domains/{domain}/config
| Param | Type | Required | Description |
|---|---|---|---|
| domain | string | required | Domain name. |
/v1/webhooks
/v1/webhooks/{id}
| Param | Type | Required | Description |
|---|---|---|---|
| id | string | required | Vercel webhook ID. |
/v1/webhooks
| Param | Type | Required | Description |
|---|---|---|---|
| url | string | required | Webhook destination URL. |
| events | array | required | Webhook events that should trigger notifications. |
| projectIds | array | optional | Project IDs that should trigger the webhook. Omit to receive events for all pro… |