VercelVercel
Menu

Update Firewall Configuration

PATCHhttps://api.vercel.com/v1/security/firewall/config
Process updates to modify the existing firewall config for a project
https://api.vercel.com/v1/security/firewall/config
const response = await fetch('https://api.vercel.com/v1/security/firewall/config?projectId=string&teamId=string&slug=string', {
method: 'PATCH',
headers: {
'Authorization': 'Bearer YOUR_ACCESS_TOKEN',
'Content-Type': 'application/json',
},
body: JSON.stringify({
"action": "firewallEnabled",
"id": "value",
"value": "true"
}),
});
const data = await response.json();
console.log(data);
Response
"value"
AuthorizationbearerToken

Default authentication mechanism

projectIdstringRequired
teamIdstringOptional
The Team identifier to perform the request on behalf of.
slugstringOptional
The Team slug to perform the request on behalf of.
application/json
actionstringRequired
idobjectOptional
valuebooleanRequired
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
500Error