events_system_tasks_list
GET/events/system_tasks/
Read-only view set that returns all background tasks
Request
Query Parameters
name string
ordering string
Which field to use when ordering the results.
page integer
A page number within the paginated result set.
page_size integer
Number of results to return per page.
search string
A search term.
status string
Possible values: [error
, successful
, unknown
, warning
]
uid string
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
]
]
pagination
object
required
next numberrequired
previous numberrequired
count numberrequired
current numberrequired
total_pages numberrequired
start_index numberrequired
end_index numberrequired
results
object[]
required
uuid uuidrequired
name stringrequired
full_name stringrequired
Get full name with UID
uid string
description stringrequired
start_timestamp date-timerequired
finish_timestamp date-timerequired
duration doublerequired
status SystemTaskStatusEnum (string)required
Possible values: [unknown
, successful
, warning
, error
]
messages
object[]
required
timestamp date-timerequired
log_level LogLevelEnum (string)required
Possible values: [critical
, exception
, error
, warn
, warning
, info
, debug
, notset
]
logger stringrequired
event stringrequired
attributes
object
required
expires date-timenullable
expiring boolean
{
"pagination": {
"next": 0,
"previous": 0,
"count": 0,
"current": 0,
"total_pages": 0,
"start_index": 0,
"end_index": 0
},
"results": [
{
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"full_name": "string",
"uid": "string",
"description": "string",
"start_timestamp": "2024-09-27T14:26:18.186Z",
"finish_timestamp": "2024-09-27T14:26:18.186Z",
"duration": 0,
"status": "unknown",
"messages": [
{
"timestamp": "2024-09-27T14:26:18.186Z",
"log_level": "critical",
"logger": "string",
"event": "string",
"attributes": {}
}
],
"expires": "2024-09-27T14:26:18.186Z",
"expiring": true
}
]
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
Loading...