- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plans
- List servers
- Server status
- Get a server
- Server metrics
- Bandwidth
- Deploy new server
- Start a server
- Restart a server
- Stop a server
- Power off
- Cancel server
- Undo cancel request
- Change password
- Update hostname
- Update SSH Keys
- Modify ISOs
- Restore
- Renew server
- Reinstall Server
- Change Primary IP
- Calculate renew amount
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Geo filter
- Whitelist
- Blacklist
- General informationGET
- BandwidthGET
- List blocked IPsGET
- List attacksGET
- Get an attackGET
- Attack bandwidthGET
- Orders
- ISOs
Update IP addresses list
PATCH
https://api.vpsbg.eu/v1/network-protection/{id}/blacklist
Network Protection
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
integerÂ
required
Header Params
Accept
stringÂ
required
Default:
application/json
Body Params application/json
active
booleanÂ
optional
networks
objectÂ
optional
add
array[string]
optional
delete
array[string]
optional
Example
{
"active": false,
"networks": {
"add": [
"200.200.200.200"
],
"delete": [
"100.100.200.100"
]
}
}
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 --request PATCH 'https://api.vpsbg.eu/v1/network-protection//blacklist' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--data-raw '{
"active": false,
"networks": {
"add": [
"200.200.200.200"
],
"delete": [
"100.100.200.100"
]
}
}'
Responses
🟢200Updated
application/json
Body
active
booleanÂ
required
networks
array[string]
required
Example
{
"active": true,
"networks": [
"string"
]
}
🔴500Server Error
Modified at 2024-10-17 08:31:35