Agent errors
List all agent errors from the given fleet in descending order with backward pagination. You can optionally filter dismissed or not dismissed errors.
Authorizations
Path parameters
fleetIDstring · uuidRequired
Query parameters
dismissedbooleanOptional
Filter agent errors that either were dismissed or were not.
lastintegerOptional
Last agent errors.
beforestringOptional
Agents errors before the given cursor.
Responses
200
OK
application/json
get
GET /v1/fleets/{fleetID}/agent_errors HTTP/1.1
Host: cloud-api.calyptia.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"agentID": "123e4567-e89b-12d3-a456-426614174000",
"error": "[config] section 'foo' tried to instance a plugin name that don't exists",
"dismissedAt": "2025-06-28T02:25:32.060Z",
"dismissReason": "text",
"createdAt": "2025-06-28T02:25:32.060Z"
}
]