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/products
Service

Get all products (Service Implementation)

Active
Model: Product
Service: Product Service

GET
/api/services/products/:id
Service

Get product by ID (Service Implementation)

Active
Model: Product
Service: Product Service

POST
/api/services/products
Service

Create a new product (Service Implementation)

Active
Model: Product
Service: Product Service

PUT
/api/services/products/:id
Service

Update product by ID (Service Implementation)

Active
Model: Product
Service: Product Service

DELETE
/api/services/products/:id
Service

Delete product by ID (Service Implementation)

Active
Model: Product
Service: Product Service