cURL
curl --request POST \ --url https://order.edisglobal.com/kvm/v2/get/services \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "pw": "securepassword123" } '
{ "status": "success", "services": [ { "service_id": 209052, "kvm_id": "kvm_18351_018442", "suspended": "Active", "billingcycle": "One Time", "price": "0.00", "key_date": "2021-09-07", "paymentmethod": "paypal", "plan": "KVM BASIC", "location": "Austria, Vienna" } ] }
Retrieves a list of services linked to the user’s account based on the provided login credentials, including details such as service status, billing cycle, pricing, and location.
Your WHMCS email address.
"[email protected]"
Your WHMCS password.
"securepassword123"
Successful response
"success"
List of active and suspended services for the user.
Show child attributes
Unique identifier for the service.
209052
KVM unique identifier.
"kvm_18351_018442"
Service status (Active or Suspended).
"Active"
Billing cycle type (e.g., Monthly, One Time).
"One Time"
Price of the service.
"0.00"
Date associated with the service.
"2021-09-07"
Payment method used.
"paypal"
Plan name of the service.
"KVM BASIC"
Location where the service is hosted.
"Austria, Vienna"
Was this page helpful?