v1
latestOpenAPI 3.0.32026-07-24214879985.1 KBSpeakers
Retrieves the current settings for the given speaker.
get/speakers/{speakerId}/settings
Query parameters
includestring[]
Response
OK
Example response
{
"data": {
"protocol": "sip"
},
"schema": {
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"protocol": {
"type": "string",
"enum": [
"sip",
"onvif"
]
},
"audioMode": {
"type": "string",
"enum": [
"disabled",
"talkDown",
"twoWayAudio"
]
},
"mainCredentials": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string"
}
}
},
"sipCredentials": {
"type": "object",
"properties": {
"username": {
"type": "string"
},
"password": {
"type": "string"
}
}
}
}
}
}