Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 14 Next »

\uD83D\uDCD8 Example - cameraList - Obtaining list active/non-active cameras

By querying the camera status is_connected, we can obtain information about status of camera.

Pre-requisites: Setup rights user TOKEN rigths - Configuration

Query:

query {
  cameraList {
    name
    is_connected
  }
}

Response:

{
  "data": {
    "cameraList": [
      {
        "name": "myCamera",
        "is_connected": true
      }
    ]
  }
}

  • No labels