disguise developers

Video Formatting Card API

GET vfcs

Summary

Get a list of all the vfc cards installed in the disguise server.

URL

GET    /api/vfcs

Responses

Response Body

[
  {
    "slot": 1,
    "type": "HDMI",
    "status": " "
  },
  {
    "slot": 2,
    "type": "DP",
    "status": " "
  }
]

POST vfcs

Summary

Update with a list of all the vfc cards installed in the disguise server.

URL

POST    /api/vfcs

Description

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.

Request Body

[
  {
    "slot": 1,
    "type": "HDMI",
    "status": " "
  },
  {
    "slot": 2,
    "type": "DP",
    "status": " "
  }
]

Responses

Response Body

{
  "message": "ok"
}