POST
/
kvm
/
v2
/
get
/
serviceid
curl --request POST \
  --url https://order.edisglobal.com/kvm/v2/get/serviceid \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data email=yourwhmc_email \
  --data pw=yourwhmcs_password \
  --data kvmid=kvm_xxxxxx_yyyyyyyy
{
  "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"

kvmid
string

The KVM instance ID.

Example:

"kvm_xxxxxx_yyyyyyyy"

Response

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

"success"

kvmid
string
Example:

"kvm_123456_789012"

serviceid
integer
Example:

987654