- 👋 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
- Orders
- ISOs
Update IP address
PATCH
https://api.vpsbg.eu/v1/ip-addresses/{id}
IP address
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
stringÂ
required
Header Params
Accept
stringÂ
required
Default:
application/json
Body Params application/json
ptr
required
Any of
Example
{
"ptr": "example.com"
// for ipv6
//"ptr": {
// "2001:0000:130F:0000:0000:09C0:876A:130B": "example.com"
//}
}
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/ip-addresses/' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--data-raw '{
"ptr": "example.com"
// for ipv6
//"ptr": {
// "2001:0000:130F:0000:0000:09C0:876A:130B": "example.com"
//}
}'
Responses
🟢200Successfully updated IP address.
application/json
Body
id
integerÂ
required
Example:
417
ip_address
stringÂ
required
Example:
87.120.37.46
prefix
integerÂ
required
Examples:
3264
version
integerÂ
required
Example:
4
type
stringÂ
required
Example:
public
main
booleanÂ
required
ddos_protected
booleanÂ
required
floating_ip
optional
Any of
Example:
{"id":205,"status":"active","ip":"87.120.37.47","server_id":2478,"expiry":"2023-07-31T21:00:00.000000Z","ddos":0}
id
integerÂ
optional
Example:
1
status
stringÂ
optional
Example:
active
server_id
integer  | nullÂ
optional
Example:
2586
server_hostname
stringÂ
required
Example:
ubuntu-2g
locked
boolean  | nullÂ
required
Default:
false
locked_at
string  | nullÂ
optional
Example:
2024-11-24T22:00:00.000000Z
lock_reason
string  | nullÂ
required
Example:
floating-ip-attach
billing_cycle
integerÂ
required
Example:
3
expiry_at
stringÂ
optional
Example:
2025-09-29T21:00:00.000000Z
plan
objectÂ
required
cancel_request
object  | nullÂ
optional
ptr
object  | nullÂ
optional
{IP_ADDRESS}
stringÂ
required
Example:
example.com
assigned_on
stringÂ
required
Example
{
"id": 417,
"ip_address": "87.120.37.46",
"prefix": 32,
"version": 4,
"type": "public",
"main": true,
"ddos_protected": true,
"floating_ip": {
"id": 205,
"status": "active",
"ip": "87.120.37.47",
"server_id": 2478,
"expiry": "2023-07-31T21:00:00.000000Z",
"ddos": 0
},
"ptr": {
"{IP_ADDRESS}": "example.com"
},
"assigned_on": "string"
}
🔴500Server Error
Modified at 2024-09-17 11:04:35