Retrieve Security Questions
# Retrieve Security Questions
Path:
/api/question.json
Method: GET
Content-type: application/json; charset=utf-8
API Description: This can be used to retrieve the current security questions (for LAN encryption).
Note: This feature is supported in version 1.70.2 and later.
Response
Name | Type | Example | Description |
---|---|---|---|
enable | bool | true | Whether to enable encryption |
questions | List | - | List of questions |
Example
{
"enable": true,
"questions": [
{
"question": "What is your name?"
},
{
"question": "When is your spouse's birthday?"
}
]
}