Last updated 1 month ago
Cybus
© Copyright 2024, Cybus GmbH
Success
const response = await fetch('/api/system/metrics', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/api/system/metrics', { method: 'PUT', headers: {}, }); const data = await response.json();
const response = await fetch('/api/marketplace/app', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/api/marketplace/app/meta', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/api/system/info', { method: 'GET', headers: {}, }); const data = await response.json();
{ "time": "text", "version": "text", "license": { "name": "text" } }
const response = await fetch('/api/system/licensefile', { method: 'PUT', headers: {}, }); const data = await response.json();
const response = await fetch('/api/system/refresh', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('/api/system/health', { method: 'GET', headers: {}, }); const data = await response.json();
{ "system": { "status": [ { "name": "text", "status": "text", "uptime": "text" } ] } }
const response = await fetch('/api/system/agents', { method: 'GET', headers: {}, }); const data = await response.json();
{ "name": "text", "status": "text", "version": "text", "hostname": "text", "classes": { "instances": [ "text" ] } }
const response = await fetch('/api/system/vrpcHealth', { method: 'GET', headers: {}, }); const data = await response.json();
{ "agentStatus": { "agentName": "text", "status": "text" }, "VRPCInterServiceCommunication": [ { "agentName": "text", "providers": [ { "providerName": "text", "reachable": false, "functionalityAffectedIfFailed": [ "text" ] } ] } ] }
const response = await fetch('/api/system/preflight', { method: 'GET', headers: {}, }); const data = await response.json();
{ "dockerHub": { "status": false, "statusText": "text", "url": "text" }, "cybusRegistry": { "status": false, "statusText": "text", "url": "text" }, "cybusPortal": { "status": false, "statusText": "text", "url": "text" }, "currentVersions": {} }
const response = await fetch('/api/marketplace/apps', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "directory": "text", "filename": "text", "name": "text", "description": "text", "homepage": "text", "icon": "text", "version": "text", "provider": "text", "availableInLicense": false, "publiclyOffered": false, "createdAt": "text", "updatedAt": "text" } ]