Audio Commands
Returns a list of all audio devices available for input.
Query parameters
requestIdstringOptional
optional id to track this command, will be returned in the response
Responses
200
successful operation
application/json
400
bad request
get
GET /api/command/getAllAudioIns HTTP/1.1
Host: 127.0.0.1:9022
Accept: */*
{
"result": {
"audioIns": [
"JOSEPH.LOCAL (Captivate Channel 1)"
],
"command": "getAllAudioIns",
"count": "16",
"reply": "getAllAudioIns",
"success": true
}
}
Get a list of all opened audio devices..
Query parameters
requestIdstringOptional
optional id to track this command, will be returned in the response
mixerstringOptional
optional name of mixer to query
Responses
200
successful operation
application/json
400
bad request
get
GET /api/command/getOpenedAudioIns HTTP/1.1
Host: 127.0.0.1:9022
Accept: */*
{
"result": {
"audioOpened": [
{
"ANY_ADDITIONAL_PROPERTY": "anything"
}
],
"command": "getOpenedAudioIns",
"leftLevel": "1.53358e-19",
"reply": "getOpenedAudioIns",
"rightLevel": "4.0178e-41",
"success": true
}
}
Last updated