Endpoint referenceDashboard
/dashboard/systemstats
The ingestion job log, filterable and paged.
The ingestion job log, filterable and paged.
SECURITY: unauthenticated, as in the original. The rows carry API request and response payloads.
The type and name filters are substring matches with LIKE, not ILIKE, so they are case-sensitive. A malformed date is skipped rather than rejected — the original catches the parse failure and drops the condition, widening the result instead of failing the request.
Query Parameters
dateFrom?string
dateTo?string
limit?integer
Format
int64name?string
page?integer
Format
int64status?string
type?string
Response Body
application/json
application/problem+json
application/problem+json
curl -X GET "https://example.com/api/v2/dashboard/systemstats"{ "$schema": "https://example.com/schemas/DashboardSystemStatsOKBody.json", "data": [ { "apiRequests": [ "string" ], "apiResponses": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "data": "string", "error": "string", "eventType": "string", "failedApiCalls": 0, "id": 0, "messageId": "string", "processingEndTime": "2019-08-24T14:15:22Z", "processingStartTime": "2019-08-24T14:15:22Z", "rescheduledInfo": "string", "retryCount": 0, "status": "string", "successfulApiCalls": 0, "totalApiCalls": 0, "updatedAt": "2019-08-24T14:15:22Z" } ], "pagination": { "property1": null, "property2": null }}