Event logs

List event logs

Retrieve a collection of event logs.

get

/event_logs

Authorizations
Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/event_logs' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "count": 100,
  "items": [
    {
      "source": "text",
      "message": "text",
      "level": "DEBUG",
      "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
      "created_at": "2017-07-21T17:32:28Z"
    }
  ]
}

Was this helpful?