18.9. Tests Jetbrains HTTPClient
18.9.1. GET
GET http://localhost:8000/api/v2/product/56
Content-Type: application/json
Accept: application/json
18.9.2. POST
### Authentication
POST http://localhost:8000/api/v2/auth/login
Content-Type: application/json
Accept: application/json
{
"username": "admin",
"password": "valid"
}
### Create Product
POST http://localhost:8000/api/v2/product
Content-Type: application/json
Accept: application/json
{
"name": "Product 1",
"barcode": "1234567890",
"price": 100.00
}