prepare global validationpipe

This commit is contained in:
Roland Schneider
2025-11-18 18:39:33 +01:00
parent 5e5a4fc505
commit d5644b6044
4 changed files with 40 additions and 2 deletions

View File

@@ -20,3 +20,28 @@ Authorization: Bearer {{auth_token}}
POST {{apiBaseUrl}}/auth/logout
Accept: application/json
Authorization: Bearer {{auth_token}}
### GET request with parameter
GET {{apiBaseUrl}}/products
Accept: application/json
### Post
POST {{apiBaseUrl}}/products
Accept: application/json
Content-Type: application/json
{
"name": "p3",
"price": 3,
"is_available": true
}
### GET
# curl -i http://httpbin.org/ip
GET http://httpbin.org/ip
###