Addons /
Update addon security rules
Updates the security rules for the addon.
Required permission
Project > Addons > General > Update
Path parameters
projectId
string requiredID of the projectaddonId
string requiredID of the addon
Request body
- {object}
ipPolicies
[array] requiredAn array of IP policy rules.- {object}Data about an IP policy rule.
address
string requiredAn IP address used by this rule.action
stringThe action for this rule.one ofALLOW, DENY
Response body
- {object}Response object.
data
{object} requiredResult data.
API
CLI
JS Client
POST /v1/projects/{projectId}/addons/{addonId}/security
Example request
Request body
curl
curl --header "Content-Type: application/json" \
--header "Authorization: Bearer NORTHFLANK_API_TOKEN" \
--request POST \
--data '{"ipPolicies":[{"address":"127.0.0.1","action":"ALLOW"}]}' \
https://api.northflank.com/v1/projects/{projectId}/addons/{addonId}/security
Example response
200 OK
The operation was performed successfully.
JSON
{
"data": {}
}