-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjson.php
60 lines (57 loc) · 1.42 KB
/
json.php
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
<meta charset="utf-8">
<?php
$json ='{
"customer": {
"firstName": "Jaroslav",
"lastName": "Trener",
"email": "[email protected]",
"phone": "+420765787435",
"addresses": [
{
"city": "Brno",
"streetAddress": "Holandská",
"streetNumber": "510",
"zip": "60500",
"addressType": "PERMANENT"
}
]
},
"order": {
"number": "57834704124",
"variableSymbols": [
"989595"
],
"totalPrice": {
"amount": 200000,
"currency": ' . $mena . '
},
"items": [
{
"code": "5202",
"ean": "9999545",
"name": "iPhone 6s 32GB SpaceGray",
"quantity": 1,
"totalPrice": {
"amount": 200000,
"currency": ' . $mena . '
},
"image": {
"filename": "iphone6s.jpg",
"url": "https://i.cdn.nrholding.net/32523771/2000/2000/iphone6s.jpg"
}
}
]
},
"type": "INSTALLMENT",
"settingsInstallment": {
'.$installment.'
},
"agreementPersonalDataProcessing": true,
"merchantUrls": {
"approvedRedirect": "http://localhost9",
"rejectedRedirect": "http://localhost",
"notificationEndpoint": "http://uzjepekne.cz"
}
}
';
?>