API Endpoints
Create and manage your API endpoints.
GET/api/users
Get all users
Active
Model: User
GET/api/users/:id
Get user by ID
Active
Model: User
GET/api/products
Get all products
Active
Model: Product
GET/api/products/:id
Get product by ID
Active
Model: Product
GET/api/services/productsService
Get all products (Service Implementation)
Active
Model: Product
Service: Product Service
GET/api/services/products/:idService
Get product by ID (Service Implementation)
Active
Model: Product
Service: Product Service
POST/api/services/productsService
Create a new product (Service Implementation)
Active
Model: Product
Service: Product Service
PUT/api/services/products/:idService
Update product by ID (Service Implementation)
Active
Model: Product
Service: Product Service
DELETE/api/services/products/:idService
Delete product by ID (Service Implementation)
Active
Model: Product
Service: Product Service