ArbiterLogRecords/List
Записи ручной фиксации (отсечки судьи) на этапе.
CLI
python limetime.py arbiter <stageGuid> --filter registrationNumber eq 101
<stageGuid> — GUID этапа--filter — фильтры: registrationNumber / refereeGuid / placemarkKey
HTTP
Запрос
POST /v3/ArbiterLogRecords/List?raceStageGuid=a1b2c3d4-0020-0020-0020-000000000020 HTTP/1.1
Host: api.limetime.io
X-Access-Key: 7f3a9b2c1d4e5f60718293a4b5c6d7e8
Content-Type: application/json
Accept: application/json
{
"filter": {
"and": [
{
"field": "registrationNumber",
"op": "eq",
"value": 101
}
]
}
}Ответ
HTTP/1.1 200 OK
Content-Type: application/json
{
"isSuccess": true,
"message": null,
"data": {
"items": [
{
"guid": "a1b2c3d4-00c0-00c0-00c0-0000000000c0",
"registrationNumber": 101,
"recordDateTimeLocal": "2026-07-15T10:42:18",
"placemarkKey": "finish",
"isFinish": true,
"isDisqualified": false,
"refereeGuid": "a1b2c3d4-00a0-00a0-00a0-0000000000a0"
}
],
"total": 1,
"offset": 0,
"limit": 100
}
}