Order-API
Upgrade VPS
Upgrades a KVM service to a new product within the same location.
POST
/
kvm
/
v2
/
add
/
upgrade
curl --request POST \
--url https://order.edisglobal.com/kvm/v2/add/upgrade \
--header 'Content-Type: application/json' \
--data '{
"email": "user@example.com",
"pw": "securepassword",
"kvmid": "kvm_123456_789012",
"newpid": 1642,
"newbillingcycle": "monthly",
"newpaymentmethod": "paypal"
}'
{
"status": "success",
"orderid": "228300",
"serviceid": "209052",
"invoiceid": "1617670",
"oldproductname": "KVM BASIC",
"newproductname": "KVM PREMIUM PLUS",
"oldproductid": "1632",
"newproductid": "1642"
}
Body
application/json
Response
200
application/json
Upgrade successful
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://order.edisglobal.com/kvm/v2/add/upgrade \
--header 'Content-Type: application/json' \
--data '{
"email": "user@example.com",
"pw": "securepassword",
"kvmid": "kvm_123456_789012",
"newpid": 1642,
"newbillingcycle": "monthly",
"newpaymentmethod": "paypal"
}'
{
"status": "success",
"orderid": "228300",
"serviceid": "209052",
"invoiceid": "1617670",
"oldproductname": "KVM BASIC",
"newproductname": "KVM PREMIUM PLUS",
"oldproductid": "1632",
"newproductid": "1642"
}
Assistant
Responses are generated using AI and may contain mistakes.