Naar hoofdinhoud gaan
GET
/
v1
/
monitors
/
{monitor_id}
/
events
Lijst Monitor Gebeurtenissen
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.

Autorisaties

Authorization
string
header
vereist

Bearer authenticatie header in de vorm van Bearer , waarbij jouw auth token is.

Padparameters

monitor_id
string
vereist

Unieke monitor-identificatie. Moet beginnen met monitor_.

Pattern: ^monitor_

Queryparameters

limit
integer
standaard:25

Paginagrootte. Standaard 25, maximaal 100.

Vereist bereik: 1 <= x <= 100
cursor
string

Ondoorzichtige cursor van de vorige reactie (next_cursor).

Respons

Succesvolle reactie met gebeurtenispagina.

data
object[]
has_more
boolean
next_cursor
string | null