Skip to content
Docs

Configures Static IPs for a project

PATCHhttps://api.vercel.com/v1/projects/{idOrName}/shared-connect-links
Allows configuring Static IPs for a project
https://api.vercel.com/v1/projects/{idOrName}/shared-connect-links
const response = await fetch('https://api.vercel.com/v1/projects/idOrName/shared-connect-links?teamId=string&slug=string', {
method: 'PATCH',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"builds": "true",
"regions": []
}),
});
const data = await response.json();
console.log(data);
Response
[
{
"aws": {
"securityGroupId": "https://example.com",
"subnetIds": []
},
"buildsEnabled": "false",
"connectConfigurationId": "example_id",
"createdAt": "123",
"dc": "string",
"envId": "example_id",
"passive": "false",
"updatedAt": "123"
}
]
AuthorizationbearerToken

Default authentication mechanism

idOrNamestringRequired
The unique project identifier or the project name
teamIdstringOptional
The Team identifier to perform the request on behalf of.
slugstringOptional
The Team slug to perform the request on behalf of.
application/json
buildsbooleanRequired
Whether to use Static IPs for builds.
regionsarrayOptional
200Success
400One of the provided values in the request body is invalid. One of the provided values in the request query is invalid.
401The request is not authorized.
402Error
403You do not have permission to access this resource.
404Error
409Error
410Error
500Error