one-review/requests/Products/CreateProduct.http
2024-11-14 21:42:59 -07:00

15 lines
259 B
HTTP

# @name create
POST {{host}}/products
Authorization: Bearer {{token}}
Content-Type: application/json
{
"Name": "Mike 1001",
"Category": "Person",
"SubCategory": "Male"
}
### get based on location header
GET {{create.response.headers.Location}}