Logs
API Key Scope: logs / index
Pass the username and password of a user in the authorization header. This currently gives full access.
The number of items to display for pagination.
The number of items to skip for pagination.
Filter on task log level
Filter on time
Filter on message
Filter on task log hostname
Filter on task log tag
List of logs.
GET /api/v2/logs HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
List of logs.
{
"count": 1,
"logs": [
{
"id": "text",
"level": "trace",
"msg": "text",
"time": "2025-12-02T10:01:44.389Z",
"hostname": "text",
"tag": "nodeum.dispatcher",
"error": "text",
"stacktrace": "text"
}
]
}API Key Scope: configs / show
Pass the username and password of a user in the authorization header. This currently gives full access.
OK
Error returned from the data management.
GET /api/v2/logs/config HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
No content
API Key Scope: configs / update
Pass the username and password of a user in the authorization header. This currently gives full access.
OK
The received resource was not correctly formatted.
Error returned from the data management.
PUT /api/v2/logs/config HTTP/1.1
Host: localhost
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
No content
API Key Scope: logs / post
Pass the username and password of a user in the authorization header. This currently gives full access.
Log notifications clear
POST /api/v2/logs/clear_notifications HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
Log notifications clear
No content
Last updated
Was this helpful?