Logs
API Key Scope: logs / index
Authorizations
Query parameters
limitintegerOptional
The number of items to display for pagination.
offsetintegerOptional
The number of items to skip for pagination.
levelstringOptional
Filter on task log level
timestringOptional
Filter on time
msgstringOptional
Filter on message
hostnamestringOptional
Filter on task log hostname
tagstringOptional
Filter on task log tag
Responses
200
List of logs.
application/json
get
/logsGET /api/v2/logs HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
200
List of logs.
{
"count": 1,
"logs": [
{
"id": "text",
"level": "trace",
"msg": "text",
"time": "2025-11-05T15:48:07.595Z",
"hostname": "text",
"tag": "nodeum.dispatcher",
"error": "text",
"stacktrace": "text"
}
]
}API Key Scope: configs / show
Authorizations
Responses
200
OK
application/json
Responseany
default
Error returned from the data management.
application/json
get
/logs/configGET /api/v2/logs/config HTTP/1.1
Host: localhost
Authorization: Basic username:password
Accept: */*
No content
API Key Scope: configs / update
Authorizations
Body
anyOptional
Responses
200
OK
application/json
Responseany
422
The received resource was not correctly formatted.
application/json
default
Error returned from the data management.
application/json
put
/logs/configPUT /api/v2/logs/config HTTP/1.1
Host: localhost
Authorization: Basic username:password
Content-Type: application/json
Accept: */*
No content
Last updated
Was this helpful?