GET System Logs​
GET
/setting/system-logs
Retrieve a paginated list of system logs ordered by most recent first. Supports searching by title or description.
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)
Parameters​
Query Parameters
search
Search logs by title or description.
Type
string
per_page
Number of log entries per page.
Type
integer
Default
20page
Page number for pagination.
Type
integer
Default
1Responses​
Paginated system logs.
application/json
JSON
{
"logs": {
"total": 0,
"per_page": 0,
"current_page": 0,
"last_page": 0,
"next_page_url": "string",
"prev_page_url": "string",
"from": 0,
"to": 0,
"data": [
{
"id": 0,
"title": "string",
"description": "string",
"status": "string",
"created_at": "string",
"updated_at": "string"
}
]
}
}