-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample-order.json
75 lines (71 loc) · 1.47 KB
/
example-order.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"order_id": 1234432423423423,
"status": "processing",
"currency": "USD",
"customer_id": 0,
"customer_note": "Custom order note.",
"billing": {
"first_name": "John",
"last_name": "Doe",
"company": "",
"address_1": "969 Market",
"address_2": "",
"city": "San Francisco",
"state": "CA",
"postcode": "94103",
"country": "US",
"email": "[email protected]",
"phone": "(555) 555-5555"
},
"shipping": {
"first_name": "John",
"last_name": "Doe",
"company": "",
"address_1": "969 Market",
"address_2": "",
"city": "San Francisco",
"state": "CA",
"postcode": "94103",
"country": "US"
},
"payment_method": "bacs",
"payment_method_title": "Direct Bank Transfer",
"transaction_id": "",
"set_paid": true,
"line_items": [{
"id": 315,
"item_id": 123456,
"sku": "EXAMPLE-SKU",
"parent_sku": "EXAMPLE-PARENT-SKU",
"price": 30,
"name": "Product Name #1",
"product_size": "King", // Twin, Queen, King
"product_type": "quilt-blanket",
"product_id": 93,
"variation_id": 0,
"quantity": 1,
"tax_class": "",
"subtotal": 90,
"subtotal_tax": 0,
"total": 90,
"total_tax": 0,
"mockup_files": [{
"url": "https://via.placeholder.com/800x600.png",
"name": ""
},
{
"url": "https://via.placeholder.com/800x600.png",
"name": ""
}
],
"print_files": [{
"url": "https://via.placeholder.com/800x600.png",
"name": ""
},
{
"url": "https://via.placeholder.com/800x600.png",
"name": ""
}
]
}]
}