-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault_user.json
55 lines (55 loc) · 1.56 KB
/
default_user.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
{"retailer": "amazon",
"products": [ {"product_id": "B0016NHH56", "quantity": 1}],
"max_price": 2300,
"shipping_address":
{
"first_name": "Werner",
"last_name": "Heisenberg",
"address_line1": "77 Massachusetts Avenue",
"address_line2": "",
"zip_code": "02139",
"city": "Cambridge",
"state": "MA",
"country": "US",
"phone_number": "5551230101"
},
"is_gift": true,
"gift_message": "From Quantum Superposition to Your Doorstep!",
"shipping": {
"order_by": "price",
"max_days": 30,
"max_price": 1000},
"payment_method": {
"name_on_card": "Werner Heisenberg",
"number": "5555555555554444",
"security_code": "420",
"expiration_month": 1,
"expiration_year": 2020,
"use_gift": false
},
"billing_address": {
"first_name": "Erwin",
"last_name": "Schrodinger",
"address_line1": "84 Massachusetts Ave",
"address_line2": "",
"zip_code": "02139",
"city": "Cambridge",
"state": "MA",
"country": "US",
"phone_number": "5551234567"
},
"retailer_credentials": {
"email": "[email protected]",
"password": "QuantumShit",
"totp_2fa_key": ""
},
"webhooks": {
"request_succeeded": "http://mywebsite.com/zinc/request_succeeded",
"request_failed": "http://mywebsite.com/zinc/requrest_failed",
"tracking_obtained": "http://mywebsite.com/zinc/tracking_obtained"
},
"client_notes": {
"our_internal_order_id": "abc123",
"any_other_field": ["any value"]
}
}