Files
cloud-cap-samples/packages/bookshop/tests/orders.http
Elena Oresharova 8233703815 Add unit 3 content
2020-03-22 11:55:22 +01:00

15 lines
361 B
HTTP

### List all Orders - deep read
GET http://localhost:4004/admin/Orders?
&$expand=Items
### Submit Orders - deep insert
POST http://localhost:4004/browse/Orders
Content-Type: application/json
{ "OrderNo":"1234", "Items":[
{ "book_ID":201, "amount":5 },
{ "book_ID":207, "amount":3 }
]}
### Try to get the Orders
GET http://localhost:4004/browse/Orders