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