45 lines
856 B
HTTP
45 lines
856 B
HTTP
# @import ./PreScript.http
|
|
###
|
|
|
|
POST /products
|
|
Content-Type: application/json
|
|
Prefer: return=representation
|
|
|
|
{
|
|
"id": 78,
|
|
"product_name": "Saffaron",
|
|
"discontinued": 0,
|
|
"supplier_id": 12,
|
|
"category_id": 2,
|
|
"quantity_per_unit": "20 mg",
|
|
"unit_price": 100,
|
|
"units_in_stock": 50,
|
|
"units_on_order": 0,
|
|
"reorder_level": 10
|
|
}
|
|
?? status == 201
|
|
?? js response.parsedBody.length == 1
|
|
?? js response.parsedBody[0].id == 78
|
|
?? js response.parsedBody[0].product_name == Saffaron
|
|
|
|
###
|
|
|
|
POST /products
|
|
Content-Type: application/json
|
|
Prefer: return=headers-only
|
|
|
|
{
|
|
"id": 78,
|
|
"product_name": "Saffaron",
|
|
"discontinued": 0,
|
|
"supplier_id": 12,
|
|
"category_id": 2,
|
|
"quantity_per_unit": "20 mg",
|
|
"unit_price": 100,
|
|
"units_in_stock": 50,
|
|
"units_on_order": 0,
|
|
"reorder_level": 10
|
|
}
|
|
?? status == 201
|
|
?? header location == /products?id=eq.78
|