Prodotti

Gestisci il catalogo prodotti del brand.

GET /brands/:slug/products

Elenca tutti i prodotti.

Responses
200Products
curl -X GET \
  https://anomalia.so/api/v1/brands/:slug/products \
  -H "Authorization: Bearer $TOKEN"
POST /brands/:slug/products

Aggiungi un nuovo prodotto.

Request Body
{ "title": "Gourmet Pizza", "pricing": "€14" }
Responses
201Created
curl -X POST \
  https://anomalia.so/api/v1/brands/:slug/products \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "title": "Gourmet Pizza", "pricing": "€14" }'
PUT /brands/:slug/products/:id

Aggiorna un prodotto.

Request Body
{ "title": "Gourmet Pizza v2", "pricing": "€16" }
Responses
200Updated
curl -X PUT \
  https://anomalia.so/api/v1/brands/:slug/products/:id \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "title": "Gourmet Pizza v2", "pricing": "€16" }'
DELETE /brands/:slug/products/:id

Elimina un prodotto.

Responses
200Deleted
curl -X DELETE \
  https://anomalia.so/api/v1/brands/:slug/products/:id \
  -H "Authorization: Bearer $TOKEN"