Skip to content
View as Markdown

GET Cron Status​

GET
/setting/cron_status

Retrieve the status of FluentCRM scheduled cron events and server information. Shows the next run time, whether events are overdue, and server memory/execution limits.

Authorizations​

ApplicationPasswords

WordPress Application Passwords — use Basic auth with your WordPress username and an application password in the format: username:application_password

Type
API Key (header: Authorization)

Responses​

Cron event statuses and server info.

application/json
JSON
{
"cron_events": [
{
"hook": "string",
"is_overdue": true,
"human_name": "string",
"next_run": "string",
"interval": 0
}
],
"server": {
"memory_limit": "string",
"usage_percent": 0,
"max_execution_time": "string",
"has_server_cron": true
}
}

Playground​

Authorization

Samples​

Powered by VitePress OpenAPI