Update webhook security configuration
PUT
/v1/admin/config/webhook-security
Replaces the server-level webhook security configuration. Changes take effect immediately for all subsequent webhook create/update operations. Existing webhook subscriptions are NOT retroactively validated.
CAUTION: Removing blocked CIDR ranges may expose the server to SSRF attacks.
Authorizations
AdminKeyAuth
Administrative API key with full system access
Type
API Key (header: X-Admin-API-Key)
Request Body
application/json
JSON "blocked_cidr_ranges": [ [ "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "127.0.0.0/8", "169.254.0.0/16", "::1/128", "fc00::/7" ] ], "allowed_url_patterns": [ "string" ], "allow_http": false
{
}
Responses
Config updated
application/json
JSON "blocked_cidr_ranges": [ [ "10.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "127.0.0.0/8", "169.254.0.0/16", "::1/128", "fc00::/7" ] ], "allowed_url_patterns": [ "string" ], "allow_http": false
{
}