Skip to Content

Things API

API for managing Things resources.

Fields

interface Things { name?: string; singular?: string; plural?: string; possessive?: string; pluralPossessive?: string; verb?: string; act?: string; activity?: string; event?: string; resources?: any; }

API Endpoints

GET /api/things

Retrieves a list of Things 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/things/:id

Retrieves a single Things by ID.

POST /api/things

Creates a new Things.

PATCH /api/things/:id

Updates an existing Things.

DELETE /api/things/:id

Deletes a Things.

Last updated on