reservations.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "reservations": [
  3. {
  4. "id": "RES-2026-001",
  5. "code": "6JKXCJ",
  6. "customer_name": "Josef Test",
  7. "customer_email": "inbox@medowar.de",
  8. "items": [
  9. {
  10. "product_id": 1,
  11. "quantity": 10,
  12. "size": "S"
  13. }
  14. ],
  15. "created": "2026-02-08 21:03:07",
  16. "expires": "2026-04-09 21:03:07",
  17. "status": "open",
  18. "picked_up": false,
  19. "type": "regular"
  20. },
  21. {
  22. "id": "RES-2026-002",
  23. "code": "VPVT2Q",
  24. "customer_name": "Josef Test",
  25. "customer_email": "inbox@medowar.de",
  26. "items": [
  27. {
  28. "product_id": 1,
  29. "quantity": 2,
  30. "size": "S"
  31. }
  32. ],
  33. "created": "2026-02-08 21:03:30",
  34. "expires": "2026-04-09 21:03:30",
  35. "status": "open",
  36. "picked_up": false,
  37. "type": "regular"
  38. },
  39. {
  40. "id": "RES-2026-003",
  41. "code": "4ADCGC",
  42. "customer_name": "Josef Test",
  43. "customer_email": "inbox@medowar.de",
  44. "items": [
  45. {
  46. "product_id": 2,
  47. "quantity": 2,
  48. "size": "S"
  49. }
  50. ],
  51. "created": "2026-02-08 21:04:10",
  52. "expires": "2026-04-09 21:04:10",
  53. "status": "picked_up",
  54. "picked_up": true,
  55. "type": "regular"
  56. },
  57. {
  58. "id": "RES-2026-004",
  59. "code": "GNKV6D",
  60. "customer_name": "Josef Test",
  61. "customer_email": "inbox@medowar.de",
  62. "items": [
  63. {
  64. "product_id": 1,
  65. "quantity": 10,
  66. "size": "S"
  67. }
  68. ],
  69. "created": "2026-02-08 21:04:12",
  70. "expires": "",
  71. "status": "open",
  72. "picked_up": false,
  73. "type": "backorder",
  74. "backorder_status": "notified"
  75. }
  76. ]
  77. }