Return cPanel account's features' metadata

This function lists the details of a cPanel account's available feature lists.

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/Features/get_feature_metadata
Request samples
uapi --output=jsonpretty \
  --user=username \
  Features \
  get_feature_metadata
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "get_feature_metadata",
  • "module": "Features",
  • "result": {
    • "data": [
      • {
        • "id": "wordpress_manager",
        • "is_cpaddon": 0,
        • "is_plugin": 1,
        • "name": "Wordpress Manager"
        }
      ],
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}