Return FTP server's information

This function retrieves the extended information about the server's FTP daemon.

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