System

Check daemon availability and connectivity

get
Responses
200
Success
application/json
get
GET /v2/system/ping HTTP/1.1
Host: localhost
Accept: */*
200

Success

{
  "additionalInfo": "text"
}

Get FLECS core and API version

get
Responses
200
Success
application/json
get
GET /v2/system/version HTTP/1.1
Host: localhost
Accept: */*
200

Success

{
  "api": "2.0.0",
  "core": "v2.0.0-???"
}

Get architecture and operating system information

get
Responses
200
Sucess
application/json
get
GET /v2/system/info HTTP/1.1
Host: localhost
Accept: */*
200

Sucess

{
  "arch": "amd64",
  "distro": {
    "codename": "bookworm",
    "id": "debian",
    "name": "Debian GNU/Linux 12 (bookworm)",
    "version": "12"
  },
  "kernel": {
    "build": "text",
    "machine": "x86_64",
    "version": "6.7.6-arch1-1"
  },
  "platform": "text"
}

Last updated

Was this helpful?