cargoGetRoute
Retrieve a list of all possible flights (both direct and connecting) between two airports on a given date. Routes are available for today and up to days in the future.
/v1/cargo/getRoute/{origin}-{destination}/{fromdate}/{productcode}"
Usage and SDK Samples
curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/lufthansa/v1/cargo/getRoute/{origin}-{destination}/{fromdate}/{productcode}""
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CargoApi;
import java.io.File;
import java.util.*;
public class CargoApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: apieco-key
ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
apieco-key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.setApiKeyPrefix("Token");
CargoApi apiInstance = new CargoApi();
String apiecoKey = apiecoKey_example; // String |
String origin = origin_example; // String | Origin airport : 3-letter IATA airport code, e.g. HKG.
String destination = destination_example; // String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
String fromdate = fromdate_example; // String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
String productcode = productcode_example; // String | Product code for requested service and specials : 3-letter eg: YNZ
try {
inline_response_200_1 result = apiInstance.cargoGetRoute(apiecoKey, origin, destination, fromdate, productcode);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CargoApi#cargoGetRoute");
e.printStackTrace();
}
}
}
import io.swagger.client.api.CargoApi;
public class CargoApiExample {
public static void main(String[] args) {
CargoApi apiInstance = new CargoApi();
String apiecoKey = apiecoKey_example; // String |
String origin = origin_example; // String | Origin airport : 3-letter IATA airport code, e.g. HKG.
String destination = destination_example; // String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
String fromdate = fromdate_example; // String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
String productcode = productcode_example; // String | Product code for requested service and specials : 3-letter eg: YNZ
try {
inline_response_200_1 result = apiInstance.cargoGetRoute(apiecoKey, origin, destination, fromdate, productcode);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling CargoApi#cargoGetRoute");
e.printStackTrace();
}
}
}
Configuration *apiConfig = [Configuration sharedConfig];
// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];
String *apiecoKey = apiecoKey_example; //
String *origin = origin_example; // Origin airport : 3-letter IATA airport code, e.g. HKG.
String *destination = destination_example; // Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
String *fromdate = fromdate_example; // Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
String *productcode = productcode_example; // Product code for requested service and specials : 3-letter eg: YNZ
CargoApi *apiInstance = [[CargoApi alloc] init];
[apiInstance cargoGetRouteWith:apiecoKey
origin:origin
destination:destination
fromdate:fromdate
productcode:productcode
completionHandler: ^(inline_response_200_1 output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var LufthansaOpenApi = require('lufthansa_open_api');
var defaultClient = LufthansaOpenApi.ApiClient.instance;
// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"
var api = new LufthansaOpenApi.CargoApi()
var apiecoKey = apiecoKey_example; // {String}
var origin = origin_example; // {String} Origin airport : 3-letter IATA airport code, e.g. HKG.
var destination = destination_example; // {String} Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
var fromdate = fromdate_example; // {String} Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
var productcode = productcode_example; // {String} Product code for requested service and specials : 3-letter eg: YNZ
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.cargoGetRoute(apiecoKey, origin, destination, fromdate, productcode, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class cargoGetRouteExample
{
public void main()
{
// Configure API key authorization: apieco-key
Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");
var apiInstance = new CargoApi();
var apiecoKey = apiecoKey_example; // String |
var origin = origin_example; // String | Origin airport : 3-letter IATA airport code, e.g. HKG.
var destination = destination_example; // String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
var fromdate = fromdate_example; // String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
var productcode = productcode_example; // String | Product code for requested service and specials : 3-letter eg: YNZ
try
{
inline_response_200_1 result = apiInstance.cargoGetRoute(apiecoKey, origin, destination, fromdate, productcode);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling CargoApi.cargoGetRoute: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');
$api_instance = new Swagger\Client\Api\CargoApi();
$apiecoKey = apiecoKey_example; // String |
$origin = origin_example; // String | Origin airport : 3-letter IATA airport code, e.g. HKG.
$destination = destination_example; // String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
$fromdate = fromdate_example; // String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
$productcode = productcode_example; // String | Product code for requested service and specials : 3-letter eg: YNZ
try {
$result = $api_instance->cargoGetRoute($apiecoKey, $origin, $destination, $fromdate, $productcode);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling CargoApi->cargoGetRoute: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CargoApi;
# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";
my $api_instance = WWW::SwaggerClient::CargoApi->new();
my $apiecoKey = apiecoKey_example; # String |
my $origin = origin_example; # String | Origin airport : 3-letter IATA airport code, e.g. HKG.
my $destination = destination_example; # String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
my $fromdate = fromdate_example; # String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
my $productcode = productcode_example; # String | Product code for requested service and specials : 3-letter eg: YNZ
eval {
my $result = $api_instance->cargoGetRoute(apiecoKey => $apiecoKey, origin => $origin, destination => $destination, fromdate => $fromdate, productcode => $productcode);
print Dumper($result);
};
if ($@) {
warn "Exception when calling CargoApi->cargoGetRoute: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'
# create an instance of the API class
api_instance = swagger_client.CargoApi()
apiecoKey = apiecoKey_example # String |
origin = origin_example # String | Origin airport : 3-letter IATA airport code, e.g. HKG.
destination = destination_example # String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
fromdate = fromdate_example # String | Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
productcode = productcode_example # String | Product code for requested service and specials : 3-letter eg: YNZ
try:
api_response = api_instance.cargo_get_route(apiecoKey, origin, destination, fromdate, productcode)
pprint(api_response)
except ApiException as e:
print("Exception when calling CargoApi->cargoGetRoute: %s\n" % e)
Parameters
Name | Description |
---|---|
origin* |
String
Origin airport : 3-letter IATA airport code, e.g. HKG.
Required
|
destination* |
String
Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
Required
|
fromdate* |
String
Departure date in the local time of the departure airport. Based on LAT (Latest Acceptance Time). format : yyyy-MM-dd eg : 2017-07-15
Required
|
productcode* |
String
Product code for requested service and specials : 3-letter eg: YNZ
Required
|
Name | Description |
---|---|
apieco-key* |
String
Required
|