Set and Get FTP Status
# Set and Get FTP Status
# Set FTP Status
Path:
/api/ftpd
Method: PUT
Content-type: application/json; charset=utf-8
API Description: This can be used to enable or disable the FTP function. The files will not be able to be transmitted through the FTP if this function is disabled.
Note: This function is supported by version 1.69.8 or above.
Request
Name | Type | Example | Description |
---|---|---|---|
ftpd | int | 1 | FTP function; 1: Enable; 0: Disable. This setting will take effect immediately once this setting completes. |
Example
{"ftpd":1}
# Get FTP Status
Path:
/api/ftpd.json
Method: GET
Content-type: application/json; charset=utf-8
API Description: This can be used to get the status of the FTP function.
Note: This function is supported by version 1.69.8 or above.
Response
Name | Type | Example | Description |
---|---|---|---|
ftpd | int | 1 | FTP function; 1: Enable; 0: Disable. This setting will take effect immediately once this setting completes. |
Example
{"ftpd":1}