Skip to Content

Settings API

API for managing Settings resources.

Fields

interface Settings { name?: string; settings?: Record<string, any>; }

API Endpoints

GET /api/settings

Retrieves a list of Settings 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/settings/:id

Retrieves a single Settings by ID.

POST /api/settings

Creates a new Settings.

PATCH /api/settings/:id

Updates an existing Settings.

DELETE /api/settings/:id

Deletes a Settings.

Last updated on