POST
/
kvm
/
v2
/
get
/
billingcycles
Get Billing cycles.
curl --request POST \
  --url https://order.edisglobal.com/kvm/v2/get/billingcycles \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data email=yourwhmc_email \
  --data pw=yourwhmcs_password
{
  "billingcycle": [
    "monthly",
    "quarterly",
    "semiannually",
    "annually"
  ],
  "status": "success"
}

Body

application/x-www-form-urlencoded
email
string

Your WHMCS email address.

Example:

"yourwhmc_email"

pw
string

Your WHMCS password.

Example:

"yourwhmcs_password"

Response

A list of available billing cycles.

billingcycle
string[]
Example:
[
"monthly",
"quarterly",
"semiannually",
"annually"
]
status
string
Example:

"success"