Skip to Content

Tags API

API for managing Tags resources.

Fields

interface Tags { id?: string; }

API Endpoints

GET /api/tags

Retrieves a list of Tags 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/tags/:id

Retrieves a single Tags by ID.

POST /api/tags

Creates a new Tags.

PATCH /api/tags/:id

Updates an existing Tags.

DELETE /api/tags/:id

Deletes a Tags.

Last updated on