-
Notifications
You must be signed in to change notification settings - Fork 20
/
customers.json
59 lines (59 loc) · 1.39 KB
/
customers.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
[
{
"id": "1",
"name": "Jane Smith",
"username": "jsmith",
"information": {
"address": "123 Main St",
"phone_number": "1234567890",
"email": "[email protected]",
"frequent_flier_number": "FF99938478",
"payment_methods": [
{
"id": "jsmith-PM-9012",
"redacted_card_number": "****-****-****-9012",
"card_holder_name": "Jane Smith",
"expiration_date": "01/29"
}
]
}
},
{
"id": "2",
"name": "John Doe",
"username": "jdoe",
"information": {
"address": "123 Main St",
"phone_number": "867-5309",
"email": "[email protected]",
"frequent_flier_number": "FF123456",
"payment_methods": [
{
"id": "jdoe-PM-8453",
"redacted_card_number": "****-****-****-8453",
"card_holder_name": "John Doe",
"expiration_date": "09/27"
}
]
}
},
{
"id": "3",
"name": "Danny Freese",
"username": "dfreese",
"information": {
"address": "567 Street St",
"phone_number": "555-1234",
"email": "[email protected]",
"frequent_flier_number": "FF987abc",
"payment_methods": [
{
"id": "dfreese-PM-9734",
"redacted_card_number": "****-****-****-9734",
"card_holder_name": "Danny F",
"expiration_date": "09/28"
}
]
}
}
]