curl --request GET \
--url https://api.example.com/logs/monitoring \
--header 'X-API-Key: <api-key>'{
"total": 1,
"limit": 2,
"offset": 1,
"items": [
{
"id": 123,
"event_type": "<string>",
"message": "<string>",
"is_success": true,
"created_at": "2023-11-07T05:31:56Z",
"data": {}
}
]
}Получить список логов мониторинга с пагинацией.
curl --request GET \
--url https://api.example.com/logs/monitoring \
--header 'X-API-Key: <api-key>'{
"total": 1,
"limit": 2,
"offset": 1,
"items": [
{
"id": 123,
"event_type": "<string>",
"message": "<string>",
"is_success": true,
"created_at": "2023-11-07T05:31:56Z",
"data": {}
}
]
}Количество записей на странице
1 <= x <= 200Смещение от начала списка
x >= 0Фильтр по типу события
100