Return reseller's cPanel accounts

This function lists all of a reseller's cPanel accounts.

SecurityBasicAuth
Responses
200

HTTP Request was successful.

Response Schema: application/json
apiversion
integer

The version of the API.

func
string

The name of the method called.

module
string

The name of the module called.

object
get/Resellers/list_accounts
Request samples
uapi --output=jsonpretty \
  --user=username \
  Resellers \
  list_accounts
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "list_accounts",
  • "module": "Resellers",
  • "result": {
    • "data": [
      • {
        • "domain": "example.com",
        • "select": "1",
        • "user": "username"
        }
      ],
    • "errors": null,
    • "messages": null,
    • "metadata": {
      • "transformed": 1
      },
    • "status": 1,
    • "warnings": null
    }
}