FLECS
HomeMarketplaceRessourcesGet started
Engineering
Engineering
  • API Docs
    • FLECS Console API
      • Welcome!
      • Quick Start
      • API Reference
        • Authentication
        • Users
        • Products
        • Device
        • Apps
    • FLECS Core API
      • API Reference
        • System
        • Device
        • Console
        • Instances
        • Apps
        • Jobs
  • App Publishing Guide
    • 💡Overview
    • 🪛How to create a FLECS app
    • 🚀How to release a FLECS app
    • 🧳App Publishing Packages
    • 📶Network
  • FLECS Core
    • Install FLECS Core Using Docker
  • White Labeling
    • Integrate views
    • On-premise hosting of apps
Powered by GitBook
On this page

Was this helpful?

  1. API Docs
  2. FLECS Core API
  3. API Reference

System

PreviousAPI ReferenceNextDevice

Last updated 3 months ago

Was this helpful?

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"
}
  • GETCheck daemon availability and connectivity
  • GETGet FLECS core and API version
  • GETGet architecture and operating system information