Return Dynamic DNS domains

This function lists the user’s Dynamic DNS (DDNS) domains.

Important:

When you disable the DNS role, the system disables this function.

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/DynamicDNS/list
Request samples
uapi --output=jsonpretty \
  --user=username \
  DynamicDNS \
  list
Response samples
application/json
{
  • "apiversion": 3,
  • "func": "list",
  • "module": "DynamicDNS",
  • "result": {
    • "data": [
      • {
        • "created_time": 0,
        • "description": "My home network",
        • "domain": "home.example.com",
        • "id": "gziugyxxjwnamqtwysgmvrurplmafxpj",
        • "last_run_times": [
          • 0
          ],
        • "last_update_time": 0
        }
      ],
    • "errors": null,
    • "messages": null,
    • "metadata": {
      • "transformed": 1
      },
    • "status": 1,
    • "warnings": null
    }
}