-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathadd-variant.http
66 lines (63 loc) · 1.36 KB
/
add-variant.http
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
POST https://localhost:7055/sales/offers/70a41a8c-0e92-4683-ab8b-d535f97ca6e0/variants
accept: */*
Content-Type: application/json
X-UserId: 6db85eb9-ffa5-42c2-b20c-0da756c89032
X-CashierId: 6bb4f4a3-531c-4154-bfe2-67a9e65d8a1f
{
"offerId": "70a41a8c-0e92-4683-ab8b-d535f97ca6e0",
"airlineType": 2,
"airlineName": "LOT",
"travel": [
{
"date": "2023-06-30",
"sourceAirport": {
"code": {
"value": "WAR"
},
"city": "Warsaw",
"name": "Warsaw Chopin",
"country": "Poland"
},
"targetAirport": {
"code": {
"value": "BCN"
},
"city": "Barcelona",
"name": "Barcelona Airport",
"country": "Spain"
},
"flightTime": {
"hours": 2,
"minutes": 45
}
}
],
"return": [
{
"date": "2023-07-12",
"sourceAirport": {
"code": {
"value": "BCN"
},
"city": "Barcelona",
"name": "Barcelona Airport",
"country": "Spain"
},
"targetAirport": {
"code": {
"value": "WAR"
},
"city": "Warsaw",
"name": "Warsaw Chopin",
"country": "Poland"
},
"flightTime": {
"hours": 2,
"minutes": 30
}
}
],
"airlineOfferId": "OFFER-1",
"validToFromAirlines": "2023-06-30T22:02:54.679Z"
}
###