Traffic Pool
Disable Auto Hydration
This endpoint disables auto hydration for a specified KVM VPS, setting the hydration limit to 0 GB.
The api_host
parameter, obtained from the ‘Create AUTH-session’ response, must be dynamically set in the URL.
Required Parameters:
- signature: The session signature obtained from the ‘Create AUTH-session’ call.
- kvm_id: The unique identifier of the KVM VPS.
- valid_until: The expiration timestamp for the session.
- config: A JSON object to disable auto hydration.
{"auto_hydration": 0}
POST
Body
application/x-www-form-urlencoded
Parameters required to disable auto hydration for a KVM VPS.
The session signature obtained from the 'Create AUTH-session' call.
Example:
"session_signature_12345"
The unique identifier of the KVM VPS.
Example:
"kvm_123456_789012"
The expiration timestamp for the session, obtained from the 'Create AUTH-session' call.
Example:
"2025-01-12T15:30:00Z"
JSON object containing the auto hydration configuration.
Example: {"auto_hydration":0}
Disable auto hydration
Example:
"{\"auto_hydration\":0}"
Response
200
application/json
Auto hydration disabled successfully.
Example:
"success"
Was this page helpful?