/trip/flight_submit
POST https://travelogue.online/api/v1/trip/flight_submit
Add & Edit flight
As flight API will be used, and only availabe when launch, all flight insert will return a default depart airport and arrival airport.
Query Parameters
| Parameter | Type | Required | Description |
| key | string | Yes | API Key |
| secret | string | Yes | API Secret |
| trip_id | string | Yes | trip_id from /trip/index |
| user_id | string | Yes | user_id from /login |
| flight_no | string | Yes | flight no of the flight |
| depart_date | string | Yes | depart date YYYY-MM-DD |
| trip_flight_id | string | For edit, trip_flight_id from /flight |
Code Samples
JavaScript PHP Railsvar xmlHttp = new XMLHttpRequest();
xmlHttp.open("POST", "https://travelogue.online/api/v1/trip/flight_submit", false);
// Make sure you set the appropriate headers
xmlHttp.setRequestHeader("Header Key", "Header Value");
var data = "# body is your JSON/ XML/ Text/ Form Query/ etc"
xmlHttp.send(data);
var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://travelogue.online/api/v1/trip/flight_submit");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// Make sure you set the nessary headers as a $headers array
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "post")
$body = '';
curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
uri = URI.parse("https://travelogue.online/api/v1/trip/flight_submit")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Post.new(uri.request_uri)
# Make sure you set the appropriate headers
request["header"] = "header value"
# body is your JSON/ XML/ Text/ Form Query/ etc
request.set_form_data(body)
response = http.request(request)
Response
200:application/json
{
"status":"200",
"message":"Success",
"result":[
{
"trip_flight_id": "55",
"from_trip_details_id": "887",
"from_flight_details_title": "Airport Nürnberg",
"to_trip_details_id": "888",
"to_flight_details_title": "Genève Aéroport",
"from_date": "22 Jan",
"from_time": "00:00",
"to_date": "28 Jan",
"to_time": "00:00"
}
]
}
"status":"200",
"message":"Success",
"result":[
{
"trip_flight_id": "55",
"from_trip_details_id": "887",
"from_flight_details_title": "Airport Nürnberg",
"to_trip_details_id": "888",
"to_flight_details_title": "Genève Aéroport",
"from_date": "22 Jan",
"from_time": "00:00",
"to_date": "28 Jan",
"to_time": "00:00"
}
]
}
400:
Missing or invalid properties
401:
Invalid API Key & Password