List all remote machines and local machine system info
GET /api/service/system/detectsystems
{
"status": {
"code": 0,
"message": "",
"details": [
{
"type_url": "",
"value": ""
}
]
},
"result": [
{
"hostname": "",
"type": "",
"version": {
"major": 0,
"minor": 0,
"hotfix": 0,
"revision": 0
},
"runningProject": "",
"ipAddress": "",
"isDesignerRunning": false,
"isServiceRunning": false,
"isManagerRunning": false,
"isNotchHostRunning": false
}
]
}
List all GPU Output (only works on d3 machine)
GET /api/service/system/gpuoutputs
{
"status": {
"code": 0,
"message": "",
"details": [
{
"type_url": "",
"value": ""
}
]
},
"result": [
{
"hostname": "",
"genlock": {
"frequency": 0
},
"gpuOutputs": [
{
"gpuPort": 0,
"genlockState": "",
"emulated": false,
"resolution": {
"width": 0,
"height": 0
},
"refreshRate": 0,
"bitDepth": 0,
"colourFormat": ""
}
]
}
]
}
List all Network Adapters
GET /api/service/system/networkadapters
{
"status": {
"code": 0,
"message": "",
"details": [
{
"type_url": "",
"value": ""
}
]
},
"result": [
{
"hostname": "",
"netAdapters": [
{
"name": "",
"mac": "",
"enabled": false,
"dhcp": false,
"status": "",
"addresses": [
{
"address": "",
"subnet": "",
"family": "",
"gateway": ""
}
]
}
]
}
]
}
List all projects
GET /api/service/system/projects
{
"status": {
"code": 0,
"message": "",
"details": [
{
"type_url": "",
"value": ""
}
]
},
"result": [
{
"hostname": "",
"lastProject": "",
"projects": [
{
"path": "",
"lastModified": "",
"version": {
"major": 0,
"minor": 0,
"hotfix": 0,
"revision": 0
}
}
]
}
]
}
List all VFC Cards
GET /api/service/system/vfcs
{
"status": {
"code": 0,
"message": "",
"details": [
{
"type_url": "",
"value": ""
}
]
},
"result": [
{
"hostname": "",
"backplaneVersion": "",
"cards": [
{
"slot": 0,
"type": "",
"firmwareVersion": "",
"fpgaVersion": "",
"splitMode": "",
"generation": "",
"ports": {
"a": {
"resolution": {
"width": 0,
"height": 0
},
"RefreshRate": 0,
"name": ""
},
"b": {
"resolution": {
"width": 0,
"height": 0
},
"RefreshRate": 0,
"name": ""
},
"c": {
"resolution": {
"width": 0,
"height": 0
},
"RefreshRate": 0,
"name": ""
},
"d": {
"resolution": {
"width": 0,
"height": 0
},
"RefreshRate": 0,
"name": ""
}
}
}
]
}
]
}