Reference
2 min read
delete/v1/integrations/configuration/{id}

Allows to remove the configuration with the id provided in the parameters. The configuration and all of its resources will be removed. This includes Webhooks, LogDrains and Project Env variables.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/integrations/configuration/SOME_STRING_VALUE?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "delete"
6
})
Path Params
Query Params
Path ParameterDescription

id

string

required
The configuration was successfully removed
CodeDescription
204The configuration was successfully removed
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404The configuration was not found
get/v1/integrations/configuration/{id}

Allows to retrieve a the configuration with the provided id in case it exists. The authenticated user or team must be the owner of the config in order to access it.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/integrations/configuration/icfg_cuwj0AdCdH3BwWT4LPijCC7t?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Path Params
Query Params
Path ParameterDescription

id

string

required
ID of the configuration to check
Example:icfg_cuwj0AdCdH3BwWT4LPijCC7t
  • One of the following objects
  • One of
CodeDescription
200The configuration with the provided id
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404The configuration was not found
get/v1/integrations/configurations

Allows to retrieve all configurations for an authenticated integration. When the project view is used, configurations generated for the authorization flow will be filtered out of the results.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/integrations/configurations?view=account&slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Query Params
Query ParameterDescription

view

string of the following

required
Allowed values:accountproject

slug

string

The Team slug to perform the request on behalf of.

teamId

string

The Team identifier to perform the request on behalf of.
  • One of the following objects
  • One of
CodeDescription
200The list of configurations for the authenticated user
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
get/v1/integrations/search-repo

Lists git repositories linked to a namespace id for a supported provider. A specific namespace id can be obtained via the git-namespaces endpoint. Supported providers are github, gitlab and bitbucket. If the provider or namespace is not provided, it will try to obtain it from the user that authenticated the request.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/integrations/search-repo?host=ghes-test.now.systems&installationId=SOME_STRING_VALUE&namespaceId=SOME_string|number_VALUE&provider=github&query=SOME_STRING_VALUE&slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Query Params
Query ParameterDescription

host

string

The custom Git host if using a custom Git provider, like GitHub Enterprise Server
Example:ghes-test.now.systems

installationId

string

namespaceId

provider

string of the following

Allowed values:githubgithub-custom-hostgitlabbitbucket

query

string

slug

string

The Team slug to perform the request on behalf of.

teamId

string

The Team identifier to perform the request on behalf of.
  • gitAccountobjectRequired
  • Properties
  • reposarrayRequired
  • Properties
CodeDescription
200
400One of the provided values in the request query is invalid.
403You do not have permission to access this resource.
Last updated on April 27, 2024