Return all cPanel account's Account Enhancements

This function lists a cPanel account's Account Enhancements.

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/AccountEnhancements/list
Request samples
uapi --output=jsonpretty \
  --user=username \
  AccountEnhancements \
  list
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "list",
  • "module": "AccountEnhancements",
  • "result": {
    • "data": [
      • {
        • "id": "sample-enhancement-id",
        • "name": "Sample Enhancement"
        }
      ],
    • "errors": null,
    • "messages": null,
    • "metadata": {
      • "transformed": 1
      },
    • "status": 1,
    • "warnings": null
    }
}