Advertisement
nontawat1996

Create order

Apr 7th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. POST /order/create/ HTTP/1.1
  2. Host: 127.0.0.1:8000
  3. Content-Type: application/json
  4. Cache-Control: no-cache
  5. Postman-Token: 67902940-1f5b-4a92-8563-b58fef0ba438
  6.  
  7. {
  8. "userId": 3,
  9. "cartId": 3,
  10. "items": [
  11. {
  12. "product": {
  13. "id": 1,
  14. "name": "เสื้อสีดำ",
  15. "productAttributeId": 4,
  16. "thumbnail": "path"
  17. },
  18. "organization": "1 Help 1 Life: น้ำสะอาดให้น้องดื่ม",
  19. "price": 150,
  20. "quantity": 3
  21. },
  22. {
  23. "product": {
  24. "id": 11,
  25. "name": "กางเกงสีน้ำเงิน",
  26. "productAttributeId": 2,
  27. "thumbnail": "path"
  28. },
  29. "price": 120,
  30. "organization": "หมื่นฝันปันโอกาส",
  31. "quantity": 2
  32. }
  33. ],
  34. "address": {
  35. "firstname": "John",
  36. "lastname": "Doe",
  37. "tel": "087-64543214",
  38. "district": "Ladkrabang",
  39. "subDistrict": "Ladkrabang",
  40. "province": "Bangkok",
  41. "postcode": "10220"
  42. }
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement