Reset target device
In case of a potential malfunction in the target system, each target can be reset during operation. The target will then restart with factory settings. All settings made via this API will be overwritten and need to be restored. Note: This API call should only be used in emergencies when the target is otherwise not functioning correctly.
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
POST
/rest/biathlon/target/system/reset-device
curl \
--request POST 'http://api.example.com/rest/biathlon/target/system/reset-device?target-name=DE_NW_SVA_EBTS_S01'
Response examples (200)
{
"success": true,
"message": "Device reset successfully scheduled",
"target_name": "DE_NW_SVA_EBTS_S01"
}
Response examples (400)
{
"success": false,
"message": "'Invalid parameters' or 'Missing required parameters'"
}