19.9. Tests Jetbrains HTTPClient

19.9.1. GET

GET http://localhost:8000/api/v2/product/56
Content-Type: application/json
Accept: application/json

19.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",
    "ean13": "1234567890",
    "price": 100.00
}