The configured DynDNS service hostnames (for ready-made update URLs).
GET
/dyndns/service-info
const url = 'https://example.com/api/v1/dyndns/service-info';const options = {method: 'GET', headers: {cookie: 'dnse_session=<dnse_session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/dyndns/service-info \ --cookie dnse_session=<dnse_session>Authorizations
Abschnitt betitelt „Authorizations“Responses
Abschnitt betitelt „Responses“Service hostnames; empty strings when unconfigured.
Media typeapplication/json
object
hostname
string
hostname4
string
hostname6
string
configured
boolean
Examplegenerated
{ "hostname": "example", "hostname4": "example", "hostname6": "example", "configured": true}