Skip to content

Info

This route has no version prefix so it is always reachable, regardless of which API version the client is using.

Get Service Information

Request

GET http://localhost:11395/dracal-service-info

Returns information about the Dracal Device Service, including its name, status, and version.

Authentication: None required

Response Format: JSON

Response

  • service_name (string): Name of the service
  • status (string): Current status (ok or error status)
  • version (object): Version information
    • major (integer): Major version number
    • minor (integer): Minor version number
    • patch (integer): Patch version number
    • tag (string): Release tag
    • tweak (integer): Tweak version number

Example

{
  "service_name": "dracal-device-service",
  "status": "ok",
  "version": {
    "major": 3,
    "minor": 6,
    "patch": 0,
    "tag": "v3.6.0",
    "tweak": 0
  }
}