Errors API
API for managing Errors resources.
Fields
interface Errors {
message: string;
stack?: string;
digest?: string;
url?: string;
source?: string;
}
API Endpoints
GET /api/errors
Retrieves a list of Errors with pagination.
Query Parameters
limit
: Maximum number of items to return (default: 10)page
: Page number for pagination (default: 1)sort
: Field to sort by (default: createdAt)where
: JSON query for filtering results
GET /api/errors/:id
Retrieves a single Errors by ID.
POST /api/errors
Creates a new Errors.
PATCH /api/errors/:id
Updates an existing Errors.
DELETE /api/errors/:id
Deletes a Errors.
Last updated on