Server List
Pre Release: Subject to changes
This gets all of your active servers under your management. It will return you the server_id, server_ip and server_billing_status.
Use Case
It is recommended for you to keep your own record of the servers that belongs to you. However this endpoint is a convenient way to pull the latest record of all the servers that you own. If you have an admin dashboard that shows you a list of your servers, you should always pull data from your own database rather than relying on the external API call to us as a general rule of thumb.
Example
GET https://zestystore.com/api/reseller/v1/servers
{
"server_id" : integer,
"server_ip" : "string",
"server_status" : "string"
}Attribute
server_id
Integer. The ID of the server for api calls.
server_ip
String. The IP of the server.
server_billing_status
String. Includes active, unpaid, cancelling and expired.
Last updated