Audio Commands

getAllAudioIns

get

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
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
  }
}

getOpenedAudioIns

get

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
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