API Tester

GET /products

GET /product/1

POST /product

{
  "body": {
    "id": 4,
    "title": "Baseball Cap",
    "description": "This is a baseball cap (generated from api tester)",
    "price": 10
  }
}
{}

DELETE /product/4

Make sure to add the product first

{}

PATCH /product/1

{
  "description": "This is a white t-shirt (random: Math.random())"
}
{}