Get the current unix time from the target

GET /rest/biathlon/target/system/time

Query parameters

  • target-name string Required

    The name of the target is permanently programmed into the device. The server knows all the names of the targets used in a competition because they have registered with the server via the Messaging API. For more information, see Messaging Service - System Data Message

Responses

  • 200 application/json

    Target Unix time retrieved successfully response.

    Hide response attributes Show response attributes object
    • target_name string
    • unix_time_ms integer(int64)
    • description string
  • 400 application/json

    Missing required field or missing required parameters

    Hide response attributes Show response attributes object
    • success boolean
    • message string
GET /rest/biathlon/target/system/time
curl \
 --request GET 'http://api.example.com/rest/biathlon/target/system/time?target-name=DE_NW_SVA_EBTS_S01'
Response examples (200)
{
  "target_name": "DE_NW_SVA_EBTS_S01",
  "unix_time_ms": 1729204000000,
  "description": "Current Unix time in milliseconds retrieved from the target device."
}
Response examples (400)
{
  "success": false,
  "message": "'Invalid parameters' or 'Missing required parameters'"
}