Each Stall has its own keys!
GET
/diagonalley/api/v1/stall/products/<relay_id>
Product JSON list
curl -X GET {{ request.url_root
}}api/v1/stall/products/<relay_id>
POST
/diagonalley/api/v1/stall/order/<relay_id>
{"id": <string>, "address": <string>, "shippingzone":
<integer>, "email": <string>, "quantity":
<integer>}
{"checking_id": <string>,"payment_request":
<string>}
curl -X POST {{ request.url_root
}}api/v1/stall/order/<relay_id> -d '{"id": <product_id&>,
"email": <customer_email>, "address": <customer_address>,
"quantity": 2, "shippingzone": 1}' -H "Content-type: application/json"
GET
/diagonalley/api/v1/stall/checkshipped/<checking_id>
{"shipped": <boolean>}
curl -X GET {{ request.url_root
}}api/v1/stall/checkshipped/<checking_id> -H "Content-type:
application/json"