Skip to content
On this page

Interfaces statuses

Endpoint

GET /v1/rpinterfaces

Returns an activation status (enabled or disabled) of the standard interfaces present on the Raspberry Pi, including additional information such as the presence of firmware files or whether SSH keys are being generated, among others

Responses

json
{
   "isStartXElf":{
      "type":"bool"
   },
   "isCamera":{
      "type":"bool"
   },
   "isSSH":{
      "type":"bool"
   },
   "isSSHKeyGenerating":{
      "type":"bool"
   },
   "isVNC":{
      "type":"bool"
   },
   "isVNCInstalled":{
      "type":"bool"
   },
   "isSPI":{
      "type":"bool"
   },
   "isI2C":{
      "type":"bool"
   },
   "isOneWire":{
      "type":"bool"
   },
   "isRemoteGpio":{
      "type":"bool"
   },
   "isWifiInterfaces":{
      "type":"bool"
   },
   "isWpaSupCom":{
      "type":"map",
      "items":{
         "key":{
            "type":"string",
         },
         "value":{
            "type":"object",
            "properties":{
               "name":{
                  "type":"string"
               },
               "value":{
                  "type":"bool"
               }
            }
         }
      }
   },
   "zoneInfo":{
      "type":"map",
      "items":{
         "key":{
            "type":"string",
         },
         "value":{
            "type":"object",
            "properties":{
               "name":{
                  "type":"string"
               },
               "value":{
                  "type":"bool"
               }
            }
         }
      }
   }
}