Skip to content

List cron tasks

GET
/admin/cron
page
integer

Page number of results to return (1-based)

limit
integer

Page size of results

CronList

Media type application/json
Array<object>

Cron represents a Cron task

object
exec_times
integer format: int64
name
string
next
string format: date-time
prev
string format: date-time
schedule
string
Example generated
[
{
"exec_times": 1,
"name": "example",
"next": "2026-04-15T12:00:00Z",
"prev": "2026-04-15T12:00:00Z",
"schedule": "example"
}
]
X-Total-Count
integer format: int64

The total number of cron jobs

APIForbiddenError is a forbidden error response

Media type application/json
object
message
string
url
string
Example generated
{
"message": "example",
"url": "example"
}