Update VPS properties. Supports IP/reverse DNS (PTR) updates via the ip-addresses array in the JSON body.
Request
Add parameter in header API-key
Example:API-key: ********************
or
Body Params application/jsonRequired
{
"ip-addresses": [
{ "ip": "1.2.3.4", "reverse": "host.example.com" }
]
}
Request Code Samples
curl --location --request PUT 'https://mijn.host/api/v2/vps/12345' \
--header 'Accept: application/json' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"ip-addresses": [
{ "ip": "1.2.3.4", "reverse": "host.example.com" }
]
}'
Responses
application/json {
"status": 0,
"status_description": "string"
}
Modified at 2026-04-09 12:33:38