Skip to content

List mDNS records

GET
/mdns/records
curl --request GET \
--url https://sylve.lan:8181/api/mdns/records \
--header 'Authorization: <Authorization>'

List all mDNS records (managed and user-created)

Success

Media typeapplication/json
object
data
Array<object>
object
active
boolean
createdAt
string
id
integer
interfaces
string
managed
boolean
name
string
port
integer
source
string
txt
object
key
additional properties
string
type
string
updatedAt
string
error
string
message
string
status
string
Examplegenerated
{
"data": [
{
"active": true,
"createdAt": "example",
"id": 1,
"interfaces": "example",
"managed": true,
"name": "example",
"port": 1,
"source": "example",
"txt": {
"additionalProperty": "example"
},
"type": "example",
"updatedAt": "example"
}
],
"error": "example",
"message": "example",
"status": "example"
}

Internal Server Error

Media typeapplication/json
object
data
error
string
message
string
status
string
Examplegenerated
{
"data": "example",
"error": "example",
"message": "example",
"status": "example"
}