POST
/
example
/
callback
curl --request POST \
  --url https://{callback_url}/example/callback \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data kvm=kvm_123456_789012 \
  --data 'details=Traffic usage reached 80%' \
  --data trigger_value=80
{
  "status": "success",
  "message": "Callback received successfully."
}

Body

application/x-www-form-urlencoded
Parameters sent to the callback URL when the webhook is triggered.
kvm
string

The unique identifier of the KVM VPS.

details
string

Details about the traffic threshold reached.

trigger_value
integer

The current traffic value when the callback is triggered.

Response

200
application/json
Callback received and processed successfully.
status
string

Status of the callback handling.

message
string

Confirmation message indicating successful processing.