メインコンテンツへスキップ
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