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 servicestatus(string): Current status (okor error status)version(object): Version informationmajor(integer): Major version numberminor(integer): Minor version numberpatch(integer): Patch version numbertag(string): Release tagtweak(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
}
}