POST
/
kvm
/
v2
/
get
/
kvmid
curl --request POST \
  --url https://order.edisglobal.com/kvm/v2/get/kvmid \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data email=yourwhmc_email \
  --data pw=yourwhmcs_password \
  --data serviceid=xxxxxxxxx
{
  "status": "success",
  "kvmid": "kvm_123456_789012",
  "serviceid": "987654"
}

Body

application/x-www-form-urlencoded
email
string

Your WHMCS email address.

Example:

"yourwhmc_email"

pw
string

Your WHMCS password.

Example:

"yourwhmcs_password"

serviceid
string

The service ID.

Example:

"xxxxxxxxx"

Response

200
application/json
Successfully retrieved the KVM ID.
status
string
Example:

"success"

kvmid
string
Example:

"kvm_123456_789012"

serviceid
string
Example:

"987654"