跳转到主要内容
GET
/
v1
/
monitors
/
{monitor_id}
/
events
列出监视器事件
curl --request GET \
  --url https://api.olostep.com/v1/monitors/{monitor_id}/events \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "run_id": "<string>",
      "created": 123,
      "changed": true,
      "summary": "<string>",
      "snapshot_url": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.olostep.com/llms.txt

Use this file to discover all available pages before exploring further.

授权

Authorization
string
header
必填

Bearer 认证头的格式为 Bearer ,其中 是你的认证令牌。

路径参数

monitor_id
string
必填

唯一的监视器标识符。必须以monitor_开头。

Pattern: ^monitor_

查询参数

limit
integer
默认值:25

页面大小。默认 25,最大 100。

必填范围: 1 <= x <= 100
cursor
string

来自上一个响应的不透明游标 (next_cursor)。

响应

成功响应包含事件页面。

data
object[]
has_more
boolean
next_cursor
string | null