Passer au contenu principal
GET
/
v1
/
monitors
/
{monitor_id}
/
events
Lister les Événements du Moniteur
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.

Autorisations

Authorization
string
header
requis

En-tête d'authentification Bearer sous la forme Bearer , où est ton jeton d'authentification.

Paramètres de chemin

monitor_id
string
requis

Identifiant unique du moniteur. Doit commencer par monitor_.

Pattern: ^monitor_

Paramètres de requête

limit
integer
défaut:25

Taille de la page. Par défaut 25, maximum 100.

Plage requise: 1 <= x <= 100
cursor
string

Curseur opaque de la réponse précédente (next_cursor).

Réponse

Réponse réussie avec la page d'événements.

data
object[]
has_more
boolean
next_cursor
string | null