Traces API
API for managing Traces resources.
Fields
interface Traces {
name?: string;
}
API Endpoints
GET /api/traces
Retrieves a list of Traces 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/traces/:id
Retrieves a single Traces by ID.
POST /api/traces
Creates a new Traces.
PATCH /api/traces/:id
Updates an existing Traces.
DELETE /api/traces/:id
Deletes a Traces.
Last updated on