Get Deriver Logs
GET/api/v1/derivers/:deriver/logs
Get Deriver Logs
Request
Path Parameters
Name
of the Deriver
Query Parameters
Timestamp to start retrieving logs from. If omitted, defaults to deriver creation time.
Timestamp to stop retrieving logs at. If omitted, defaults to the current time.
Possible values: > 0
Maximum number of log entries to return.
Possible values: [forward
, backward
]
The direction in which to retrieve logs: 'forward' for chronological order, 'backward' for reverse chronological order.
backward
Possible values: [CRITICAL
, FATAL
, ERROR
, WARN
, WARNING
, INFO
, DEBUG
, NOTSET
]
Log level
Responses
- 200
- 400
- 401
- 403
- 404
200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
[
{
"message": "string",
"timestamp": "2024-07-29T15:51:28.071Z"
}
]
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Possible values: [Validation Error
]
errors
object[]
required
Possible values: [body
, query
, path
, headers
]
{
"status": "Validation Error",
"errors": [
{
"error": "string",
"location": "body"
}
]
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [Unauthorized
]
{
"status": "Unauthorized"
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [Forbidden
]
{
"status": "Forbidden"
}
Deriver not found
- application/json
- Schema
- Example (from schema)
Schema
Possible values: [Deriver not found
]
{
"status": "Deriver not found"
}