test updates to take into account exception management

This commit is contained in:
2025-09-27 13:47:36 +02:00
parent 3e720212d9
commit 6b9817f179
38 changed files with 2951 additions and 871 deletions

View File

@@ -98,7 +98,7 @@ Content-Type: application/json
Most list endpoints support pagination:
```bash
GET /api/v1/products?skip=0&limit=20
GET /api/v1/product?skip=0&limit=20
```
Response includes pagination metadata:
@@ -116,14 +116,14 @@ Response includes pagination metadata:
Many endpoints support filtering and search:
```bash
GET /api/v1/products?search=laptop&category=electronics&min_price=100
GET /api/v1/product?search=laptop&category=electronics&min_price=100
```
### Sorting
Use the `sort` parameter with field names:
```bash
GET /api/v1/products?sort=name&order=desc
GET /api/v1/product?sort=name&order=desc
```
## Status Codes