Return whether Horde is enabled

This function checks whether Horde is enabled. Since Horde is no longer installed with the product, the return value will only ever be 0.

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/DAV/is_horde_enabled
Request samples
uapi --output=jsonpretty \
  --user=username \
  DAV \
  is_horde_enabled
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "is_horde_enabled",
  • "module": "DAV",
  • "result": {
    • "data": {
      • "enabled": 0
      },
    • "errors": null,
    • "messages": null,
    • "metadata": { },
    • "status": 1,
    • "warnings": null
    }
}