Get a list of all the vfc cards installed in the disguise server.
GET /api/vfcs
[
{
"slot": 1,
"type": "HDMI",
"status": " "
},
{
"slot": 2,
"type": "DP",
"status": " "
}
]
Update with a list of all the vfc cards installed in the disguise server.
POST /api/vfcs
Update with a list of all the vfc cards installed in the disguise server. The POSTed list replaces the entire current list in the database.
[
{
"slot": 1,
"type": "HDMI",
"status": " "
},
{
"slot": 2,
"type": "DP",
"status": " "
}
]
Response Body
{
"message": "ok"
}