- API v2 Introduction
- 3rd Party API Integration
- Servers
- Manage
- Health & Monitoring
- Database
- Database Users
- System Users
- SSH Keys
- Cron Job
- Supervisor
- Services
- Security - Firewall
- Security - Fail2Ban
- SSH Configuration
- Server Activity Logs
- Settings - PHP
- Deployment Keys
- Settings - Auto Security Update
- Web Applications
- Static Data
Create a firewall rule
POST
/v2/servers/{{serverId}}/security/firewalls
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
type
string
required
port
integer
required
protocol
string
required
ipAddress
string
optional
firewallAction
string
optional
Example
{
"type": "rich",
"port": 9000,
"protocol": "tcp",
"ipAddress": "192.168.43.0/24",
"firewallAction": "accept"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST 'https://manage.runcloud.io/api/v2/servers/{{serverId}}/security/firewalls' \
--header 'Content-Type: application/json' \
--data-raw '{
"type": "rich",
"port": 9000,
"protocol": "tcp",
"ipAddress": "192.168.43.0/24",
"firewallAction": "accept"
}'
Responses
🟢200Success
application/json
Body
array of:
id
integer
required
type
string
required
port
string
required
protocol
string
required
ipAddress
null
required
firewallAction
null
required
created_at
string
required
Example
[
{
"id": 113,
"type": "rich",
"port": "9000",
"protocol": "tcp",
"ipAddress": "192.168.43.0/24",
"firewallAction": "accept",
"created_at": "2024-07-24 09:16:41"
}
]
Modified at 2024-09-04 07:29:03