های هالیدی

RequestDetail

v4FlightRequestDetailApiKeyUsernameRequestNumberPost


/V4/FlightRequest/Detail/{ApiKey}/{Username}/{RequestNumber}

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/hiholiday/V4/FlightRequest/Detail/{ApiKey}/{Username}/{RequestNumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.RequestDetailApi;

import java.io.File;
import java.util.*;

public class RequestDetailApiExample {

    public static void main(String[] args) {
        
        RequestDetailApi apiInstance = new RequestDetailApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String username = username_example; // String | 
        String requestNumber = requestNumber_example; // String | 
        try {
            apiInstance.v4FlightRequestDetailApiKeyUsernameRequestNumberPost(apiecoKey, apiKey, username, requestNumber);
        } catch (ApiException e) {
            System.err.println("Exception when calling RequestDetailApi#v4FlightRequestDetailApiKeyUsernameRequestNumberPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.RequestDetailApi;

public class RequestDetailApiExample {

    public static void main(String[] args) {
        RequestDetailApi apiInstance = new RequestDetailApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String username = username_example; // String | 
        String requestNumber = requestNumber_example; // String | 
        try {
            apiInstance.v4FlightRequestDetailApiKeyUsernameRequestNumberPost(apiecoKey, apiKey, username, requestNumber);
        } catch (ApiException e) {
            System.err.println("Exception when calling RequestDetailApi#v4FlightRequestDetailApiKeyUsernameRequestNumberPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *username = username_example; // 
String *requestNumber = requestNumber_example; // 

RequestDetailApi *apiInstance = [[RequestDetailApi alloc] init];

[apiInstance v4FlightRequestDetailApiKeyUsernameRequestNumberPostWith:apiecoKey
    apiKey:apiKey
    username:username
    requestNumber:requestNumber
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _.RequestDetailApi()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var username = username_example; // {String} 

var requestNumber = requestNumber_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.v4FlightRequestDetailApiKeyUsernameRequestNumberPost(apiecoKey, apiKey, username, requestNumber, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightRequestDetailApiKeyUsernameRequestNumberPostExample
    {
        public void main()
        {
            
            var apiInstance = new RequestDetailApi();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var username = username_example;  // String | 
            var requestNumber = requestNumber_example;  // String | 

            try
            {
                apiInstance.v4FlightRequestDetailApiKeyUsernameRequestNumberPost(apiecoKey, apiKey, username, requestNumber);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling RequestDetailApi.v4FlightRequestDetailApiKeyUsernameRequestNumberPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\RequestDetailApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$username = username_example; // String | 
$requestNumber = requestNumber_example; // String | 

try {
    $api_instance->v4FlightRequestDetailApiKeyUsernameRequestNumberPost($apiecoKey, $apiKey, $username, $requestNumber);
} catch (Exception $e) {
    echo 'Exception when calling RequestDetailApi->v4FlightRequestDetailApiKeyUsernameRequestNumberPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::RequestDetailApi;

my $api_instance = WWW::SwaggerClient::RequestDetailApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $username = username_example; # String | 
my $requestNumber = requestNumber_example; # String | 

eval { 
    $api_instance->v4FlightRequestDetailApiKeyUsernameRequestNumberPost(apiecoKey => $apiecoKey, apiKey => $apiKey, username => $username, requestNumber => $requestNumber);
};
if ($@) {
    warn "Exception when calling RequestDetailApi->v4FlightRequestDetailApiKeyUsernameRequestNumberPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.RequestDetailApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
username = username_example # String | 
requestNumber = requestNumber_example # String | 

try: 
    api_instance.v4_flight_request_detail_api_key_username_request_number_post(apiecoKey, apiKey, username, requestNumber)
except ApiException as e:
    print("Exception when calling RequestDetailApi->v4FlightRequestDetailApiKeyUsernameRequestNumberPost: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
Username*
String
Required
RequestNumber*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


Requests

v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost


/V4/FlightRequest/Get/{ApiKey}/{Username}/{Pagesize}/{Pagenumber}

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/hiholiday/V4/FlightRequest/Get/{ApiKey}/{Username}/{Pagesize}/{Pagenumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.RequestsApi;

import java.io.File;
import java.util.*;

public class RequestsApiExample {

    public static void main(String[] args) {
        
        RequestsApi apiInstance = new RequestsApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String username = username_example; // String | 
        String pagesize = pagesize_example; // String | 
        String pagenumber = pagenumber_example; // String | 
        try {
            apiInstance.v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost(apiecoKey, apiKey, username, pagesize, pagenumber);
        } catch (ApiException e) {
            System.err.println("Exception when calling RequestsApi#v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.RequestsApi;

public class RequestsApiExample {

    public static void main(String[] args) {
        RequestsApi apiInstance = new RequestsApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String username = username_example; // String | 
        String pagesize = pagesize_example; // String | 
        String pagenumber = pagenumber_example; // String | 
        try {
            apiInstance.v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost(apiecoKey, apiKey, username, pagesize, pagenumber);
        } catch (ApiException e) {
            System.err.println("Exception when calling RequestsApi#v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *username = username_example; // 
String *pagesize = pagesize_example; // 
String *pagenumber = pagenumber_example; // 

RequestsApi *apiInstance = [[RequestsApi alloc] init];

[apiInstance v4FlightRequestGetApiKeyUsernamePagesizePagenumberPostWith:apiecoKey
    apiKey:apiKey
    username:username
    pagesize:pagesize
    pagenumber:pagenumber
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _.RequestsApi()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var username = username_example; // {String} 

var pagesize = pagesize_example; // {String} 

var pagenumber = pagenumber_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost(apiecoKey, apiKey, username, pagesize, pagenumber, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightRequestGetApiKeyUsernamePagesizePagenumberPostExample
    {
        public void main()
        {
            
            var apiInstance = new RequestsApi();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var username = username_example;  // String | 
            var pagesize = pagesize_example;  // String | 
            var pagenumber = pagenumber_example;  // String | 

            try
            {
                apiInstance.v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost(apiecoKey, apiKey, username, pagesize, pagenumber);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling RequestsApi.v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\RequestsApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$username = username_example; // String | 
$pagesize = pagesize_example; // String | 
$pagenumber = pagenumber_example; // String | 

try {
    $api_instance->v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost($apiecoKey, $apiKey, $username, $pagesize, $pagenumber);
} catch (Exception $e) {
    echo 'Exception when calling RequestsApi->v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::RequestsApi;

my $api_instance = WWW::SwaggerClient::RequestsApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $username = username_example; # String | 
my $pagesize = pagesize_example; # String | 
my $pagenumber = pagenumber_example; # String | 

eval { 
    $api_instance->v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost(apiecoKey => $apiecoKey, apiKey => $apiKey, username => $username, pagesize => $pagesize, pagenumber => $pagenumber);
};
if ($@) {
    warn "Exception when calling RequestsApi->v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.RequestsApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
username = username_example # String | 
pagesize = pagesize_example # String | 
pagenumber = pagenumber_example # String | 

try: 
    api_instance.v4_flight_request_get_api_key_username_pagesize_pagenumber_post(apiecoKey, apiKey, username, pagesize, pagenumber)
except ApiException as e:
    print("Exception when calling RequestsApi->v4FlightRequestGetApiKeyUsernamePagesizePagenumberPost: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
Username*
String
Required
Pagesize*
String
Required
Pagenumber*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


_

v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet


/V4/Flight/CalendarRoute/{ApiKey}/{DepartureCode}/{ArrivalCode}/{StartDepartureDate}/{EndDepartureDate}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/CalendarRoute/{ApiKey}/{DepartureCode}/{ArrivalCode}/{StartDepartureDate}/{EndDepartureDate}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String startDepartureDate = startDepartureDate_example; // String | 
        String endDepartureDate = endDepartureDate_example; // String | 
        try {
            inline_response_200_6 result = apiInstance.v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet(apiecoKey, apiKey, departureCode, arrivalCode, startDepartureDate, endDepartureDate);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String startDepartureDate = startDepartureDate_example; // String | 
        String endDepartureDate = endDepartureDate_example; // String | 
        try {
            inline_response_200_6 result = apiInstance.v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet(apiecoKey, apiKey, departureCode, arrivalCode, startDepartureDate, endDepartureDate);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *departureCode = departureCode_example; // 
String *arrivalCode = arrivalCode_example; // 
String *startDepartureDate = startDepartureDate_example; // 
String *endDepartureDate = endDepartureDate_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGetWith:apiecoKey
    apiKey:apiKey
    departureCode:departureCode
    arrivalCode:arrivalCode
    startDepartureDate:startDepartureDate
    endDepartureDate:endDepartureDate
              completionHandler: ^(inline_response_200_6 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var departureCode = departureCode_example; // {String} 

var arrivalCode = arrivalCode_example; // {String} 

var startDepartureDate = startDepartureDate_example; // {String} 

var endDepartureDate = endDepartureDate_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet(apiecoKey, apiKey, departureCode, arrivalCode, startDepartureDate, endDepartureDate, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var departureCode = departureCode_example;  // String | 
            var arrivalCode = arrivalCode_example;  // String | 
            var startDepartureDate = startDepartureDate_example;  // String | 
            var endDepartureDate = endDepartureDate_example;  // String | 

            try
            {
                inline_response_200_6 result = apiInstance.v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet(apiecoKey, apiKey, departureCode, arrivalCode, startDepartureDate, endDepartureDate);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$departureCode = departureCode_example; // String | 
$arrivalCode = arrivalCode_example; // String | 
$startDepartureDate = startDepartureDate_example; // String | 
$endDepartureDate = endDepartureDate_example; // String | 

try {
    $result = $api_instance->v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet($apiecoKey, $apiKey, $departureCode, $arrivalCode, $startDepartureDate, $endDepartureDate);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $departureCode = departureCode_example; # String | 
my $arrivalCode = arrivalCode_example; # String | 
my $startDepartureDate = startDepartureDate_example; # String | 
my $endDepartureDate = endDepartureDate_example; # String | 

eval { 
    my $result = $api_instance->v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet(apiecoKey => $apiecoKey, apiKey => $apiKey, departureCode => $departureCode, arrivalCode => $arrivalCode, startDepartureDate => $startDepartureDate, endDepartureDate => $endDepartureDate);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
departureCode = departureCode_example # String | 
arrivalCode = arrivalCode_example # String | 
startDepartureDate = startDepartureDate_example # String | 
endDepartureDate = endDepartureDate_example # String | 

try: 
    api_response = api_instance.v4_flight_calendar_route_api_key_departure_code_arrival_code_start_departure_date_end_departure_date_get(apiecoKey, apiKey, departureCode, arrivalCode, startDepartureDate, endDepartureDate)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightCalendarRouteApiKeyDepartureCodeArrivalCodeStartDepartureDateEndDepartureDateGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
DepartureCode*
String
Required
ArrivalCode*
String
Required
StartDepartureDate*
String
Required
EndDepartureDate*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightCheckFlightYourApiKeyFlightIDGet


/V4/Flight/CheckFlight/{YourApiKey}/{FlightID}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/CheckFlight/{YourApiKey}/{FlightID}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String flightID = flightID_example; // String | 
        try {
            inline_response_200_7 result = apiInstance.v4FlightCheckFlightYourApiKeyFlightIDGet(apiecoKey, yourApiKey, flightID);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightCheckFlightYourApiKeyFlightIDGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String flightID = flightID_example; // String | 
        try {
            inline_response_200_7 result = apiInstance.v4FlightCheckFlightYourApiKeyFlightIDGet(apiecoKey, yourApiKey, flightID);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightCheckFlightYourApiKeyFlightIDGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *yourApiKey = yourApiKey_example; // 
String *flightID = flightID_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightCheckFlightYourApiKeyFlightIDGetWith:apiecoKey
    yourApiKey:yourApiKey
    flightID:flightID
              completionHandler: ^(inline_response_200_7 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var yourApiKey = yourApiKey_example; // {String} 

var flightID = flightID_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightCheckFlightYourApiKeyFlightIDGet(apiecoKey, yourApiKey, flightID, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightCheckFlightYourApiKeyFlightIDGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var yourApiKey = yourApiKey_example;  // String | 
            var flightID = flightID_example;  // String | 

            try
            {
                inline_response_200_7 result = apiInstance.v4FlightCheckFlightYourApiKeyFlightIDGet(apiecoKey, yourApiKey, flightID);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightCheckFlightYourApiKeyFlightIDGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$yourApiKey = yourApiKey_example; // String | 
$flightID = flightID_example; // String | 

try {
    $result = $api_instance->v4FlightCheckFlightYourApiKeyFlightIDGet($apiecoKey, $yourApiKey, $flightID);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightCheckFlightYourApiKeyFlightIDGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $yourApiKey = yourApiKey_example; # String | 
my $flightID = flightID_example; # String | 

eval { 
    my $result = $api_instance->v4FlightCheckFlightYourApiKeyFlightIDGet(apiecoKey => $apiecoKey, yourApiKey => $yourApiKey, flightID => $flightID);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightCheckFlightYourApiKeyFlightIDGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
yourApiKey = yourApiKey_example # String | 
flightID = flightID_example # String | 

try: 
    api_response = api_instance.v4_flight_check_flight_your_api_key_flight_id_get(apiecoKey, yourApiKey, flightID)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightCheckFlightYourApiKeyFlightIDGet: %s\n" % e)

Parameters

Path parameters
Name Description
YourApiKey*
String
Required
FlightID*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightDepartureByArrivalApiKeyArrivalCodeGet


/V4/Flight/DepartureByArrival/{ApiKey}/{ArrivalCode}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/DepartureByArrival/{ApiKey}/{ArrivalCode}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        try {
            inline_response_200_1 result = apiInstance.v4FlightDepartureByArrivalApiKeyArrivalCodeGet(apiecoKey, apiKey, arrivalCode);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightDepartureByArrivalApiKeyArrivalCodeGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        try {
            inline_response_200_1 result = apiInstance.v4FlightDepartureByArrivalApiKeyArrivalCodeGet(apiecoKey, apiKey, arrivalCode);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightDepartureByArrivalApiKeyArrivalCodeGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *arrivalCode = arrivalCode_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightDepartureByArrivalApiKeyArrivalCodeGetWith:apiecoKey
    apiKey:apiKey
    arrivalCode:arrivalCode
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var arrivalCode = arrivalCode_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightDepartureByArrivalApiKeyArrivalCodeGet(apiecoKey, apiKey, arrivalCode, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightDepartureByArrivalApiKeyArrivalCodeGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var arrivalCode = arrivalCode_example;  // String | 

            try
            {
                inline_response_200_1 result = apiInstance.v4FlightDepartureByArrivalApiKeyArrivalCodeGet(apiecoKey, apiKey, arrivalCode);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightDepartureByArrivalApiKeyArrivalCodeGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$arrivalCode = arrivalCode_example; // String | 

try {
    $result = $api_instance->v4FlightDepartureByArrivalApiKeyArrivalCodeGet($apiecoKey, $apiKey, $arrivalCode);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightDepartureByArrivalApiKeyArrivalCodeGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $arrivalCode = arrivalCode_example; # String | 

eval { 
    my $result = $api_instance->v4FlightDepartureByArrivalApiKeyArrivalCodeGet(apiecoKey => $apiecoKey, apiKey => $apiKey, arrivalCode => $arrivalCode);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightDepartureByArrivalApiKeyArrivalCodeGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
arrivalCode = arrivalCode_example # String | 

try: 
    api_response = api_instance.v4_flight_departure_by_arrival_api_key_arrival_code_get(apiecoKey, apiKey, arrivalCode)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightDepartureByArrivalApiKeyArrivalCodeGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
ArrivalCode*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightDepartureByArrivalApiKeyDepartureCodeGet


/V4/Flight/DepartureByArrival/{ApiKey}/{DepartureCode}/

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/DepartureByArrival/{ApiKey}/{DepartureCode}/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        try {
            inline_response_200_2 result = apiInstance.v4FlightDepartureByArrivalApiKeyDepartureCodeGet(apiecoKey, apiKey, departureCode);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightDepartureByArrivalApiKeyDepartureCodeGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        try {
            inline_response_200_2 result = apiInstance.v4FlightDepartureByArrivalApiKeyDepartureCodeGet(apiecoKey, apiKey, departureCode);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightDepartureByArrivalApiKeyDepartureCodeGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *departureCode = departureCode_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightDepartureByArrivalApiKeyDepartureCodeGetWith:apiecoKey
    apiKey:apiKey
    departureCode:departureCode
              completionHandler: ^(inline_response_200_2 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var departureCode = departureCode_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightDepartureByArrivalApiKeyDepartureCodeGet(apiecoKey, apiKey, departureCode, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightDepartureByArrivalApiKeyDepartureCodeGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var departureCode = departureCode_example;  // String | 

            try
            {
                inline_response_200_2 result = apiInstance.v4FlightDepartureByArrivalApiKeyDepartureCodeGet(apiecoKey, apiKey, departureCode);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightDepartureByArrivalApiKeyDepartureCodeGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$departureCode = departureCode_example; // String | 

try {
    $result = $api_instance->v4FlightDepartureByArrivalApiKeyDepartureCodeGet($apiecoKey, $apiKey, $departureCode);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightDepartureByArrivalApiKeyDepartureCodeGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $departureCode = departureCode_example; # String | 

eval { 
    my $result = $api_instance->v4FlightDepartureByArrivalApiKeyDepartureCodeGet(apiecoKey => $apiecoKey, apiKey => $apiKey, departureCode => $departureCode);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightDepartureByArrivalApiKeyDepartureCodeGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
departureCode = departureCode_example # String | 

try: 
    api_response = api_instance.v4_flight_departure_by_arrival_api_key_departure_code_get(apiecoKey, apiKey, departureCode)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightDepartureByArrivalApiKeyDepartureCodeGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
DepartureCode*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet


/V4/Flight/FlightNo/{ApiKey}/{FlightNumber}/{pageSize}/{PageNumber}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/FlightNo/{ApiKey}/{FlightNumber}/{pageSize}/{PageNumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String pageSize = pageSize_example; // String | 
        Integer pageNumber = 56; // Integer | 
        Integer flightNumber = 56; // Integer | 
        try {
            inline_response_200_4 result = apiInstance.v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet(apiecoKey, apiKey, pageSize, pageNumber, flightNumber);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String pageSize = pageSize_example; // String | 
        Integer pageNumber = 56; // Integer | 
        Integer flightNumber = 56; // Integer | 
        try {
            inline_response_200_4 result = apiInstance.v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet(apiecoKey, apiKey, pageSize, pageNumber, flightNumber);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *pageSize = pageSize_example; // 
Integer *pageNumber = 56; // 
Integer *flightNumber = 56; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGetWith:apiecoKey
    apiKey:apiKey
    pageSize:pageSize
    pageNumber:pageNumber
    flightNumber:flightNumber
              completionHandler: ^(inline_response_200_4 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var pageSize = pageSize_example; // {String} 

var pageNumber = 56; // {Integer} 

var flightNumber = 56; // {Integer} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet(apiecoKey, apiKey, pageSize, pageNumber, flightNumber, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var pageSize = pageSize_example;  // String | 
            var pageNumber = 56;  // Integer | 
            var flightNumber = 56;  // Integer | 

            try
            {
                inline_response_200_4 result = apiInstance.v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet(apiecoKey, apiKey, pageSize, pageNumber, flightNumber);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$pageSize = pageSize_example; // String | 
$pageNumber = 56; // Integer | 
$flightNumber = 56; // Integer | 

try {
    $result = $api_instance->v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet($apiecoKey, $apiKey, $pageSize, $pageNumber, $flightNumber);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $pageSize = pageSize_example; # String | 
my $pageNumber = 56; # Integer | 
my $flightNumber = 56; # Integer | 

eval { 
    my $result = $api_instance->v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet(apiecoKey => $apiecoKey, apiKey => $apiKey, pageSize => $pageSize, pageNumber => $pageNumber, flightNumber => $flightNumber);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
pageSize = pageSize_example # String | 
pageNumber = 56 # Integer | 
flightNumber = 56 # Integer | 

try: 
    api_response = api_instance.v4_flight_flight_no_api_key_flight_number_page_size_page_number_get(apiecoKey, apiKey, pageSize, pageNumber, flightNumber)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightFlightNoApiKeyFlightNumberPageSizePageNumberGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
pageSize*
String
Required
PageNumber*
Integer
Required
FlightNumber*
Integer
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightLastSecondApiKeyPageSizePageNumberGet


/V4/Flight/LastSecond/{ApiKey}/{pageSize}/{PageNumber}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/LastSecond/{ApiKey}/{pageSize}/{PageNumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String pageSize = pageSize_example; // String | 
        Integer pageNumber = 56; // Integer | 
        Integer flightNumber = 56; // Integer | 
        try {
            inline_response_200_5 result = apiInstance.v4FlightLastSecondApiKeyPageSizePageNumberGet(apiecoKey, apiKey, pageSize, pageNumber, flightNumber);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightLastSecondApiKeyPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String pageSize = pageSize_example; // String | 
        Integer pageNumber = 56; // Integer | 
        Integer flightNumber = 56; // Integer | 
        try {
            inline_response_200_5 result = apiInstance.v4FlightLastSecondApiKeyPageSizePageNumberGet(apiecoKey, apiKey, pageSize, pageNumber, flightNumber);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightLastSecondApiKeyPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *pageSize = pageSize_example; // 
Integer *pageNumber = 56; // 
Integer *flightNumber = 56; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightLastSecondApiKeyPageSizePageNumberGetWith:apiecoKey
    apiKey:apiKey
    pageSize:pageSize
    pageNumber:pageNumber
    flightNumber:flightNumber
              completionHandler: ^(inline_response_200_5 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var pageSize = pageSize_example; // {String} 

var pageNumber = 56; // {Integer} 

var flightNumber = 56; // {Integer} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightLastSecondApiKeyPageSizePageNumberGet(apiecoKey, apiKey, pageSize, pageNumber, flightNumber, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightLastSecondApiKeyPageSizePageNumberGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var pageSize = pageSize_example;  // String | 
            var pageNumber = 56;  // Integer | 
            var flightNumber = 56;  // Integer | 

            try
            {
                inline_response_200_5 result = apiInstance.v4FlightLastSecondApiKeyPageSizePageNumberGet(apiecoKey, apiKey, pageSize, pageNumber, flightNumber);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightLastSecondApiKeyPageSizePageNumberGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$pageSize = pageSize_example; // String | 
$pageNumber = 56; // Integer | 
$flightNumber = 56; // Integer | 

try {
    $result = $api_instance->v4FlightLastSecondApiKeyPageSizePageNumberGet($apiecoKey, $apiKey, $pageSize, $pageNumber, $flightNumber);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightLastSecondApiKeyPageSizePageNumberGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $pageSize = pageSize_example; # String | 
my $pageNumber = 56; # Integer | 
my $flightNumber = 56; # Integer | 

eval { 
    my $result = $api_instance->v4FlightLastSecondApiKeyPageSizePageNumberGet(apiecoKey => $apiecoKey, apiKey => $apiKey, pageSize => $pageSize, pageNumber => $pageNumber, flightNumber => $flightNumber);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightLastSecondApiKeyPageSizePageNumberGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
pageSize = pageSize_example # String | 
pageNumber = 56 # Integer | 
flightNumber = 56 # Integer | 

try: 
    api_response = api_instance.v4_flight_last_second_api_key_page_size_page_number_get(apiecoKey, apiKey, pageSize, pageNumber, flightNumber)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightLastSecondApiKeyPageSizePageNumberGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
pageSize*
String
Required
PageNumber*
Integer
Required
FlightNumber*
Integer
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet


/V4/Flight/LiveOneWay/{YourApiKey}/{DepartureCode}/{ArrivalCode}/{DepartureDate}/{Manufacturer}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/LiveOneWay/{YourApiKey}/{DepartureCode}/{ArrivalCode}/{DepartureDate}/{Manufacturer}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String departureDate = departureDate_example; // String | 
        String manufacturer = manufacturer_example; // String | 
        try {
            inline_response_200_4 result = apiInstance.v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet(apiecoKey, yourApiKey, departureCode, arrivalCode, departureDate, manufacturer);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String departureDate = departureDate_example; // String | 
        String manufacturer = manufacturer_example; // String | 
        try {
            inline_response_200_4 result = apiInstance.v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet(apiecoKey, yourApiKey, departureCode, arrivalCode, departureDate, manufacturer);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *yourApiKey = yourApiKey_example; // 
String *departureCode = departureCode_example; // 
String *arrivalCode = arrivalCode_example; // 
String *departureDate = departureDate_example; // 
String *manufacturer = manufacturer_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGetWith:apiecoKey
    yourApiKey:yourApiKey
    departureCode:departureCode
    arrivalCode:arrivalCode
    departureDate:departureDate
    manufacturer:manufacturer
              completionHandler: ^(inline_response_200_4 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var yourApiKey = yourApiKey_example; // {String} 

var departureCode = departureCode_example; // {String} 

var arrivalCode = arrivalCode_example; // {String} 

var departureDate = departureDate_example; // {String} 

var manufacturer = manufacturer_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet(apiecoKey, yourApiKey, departureCode, arrivalCode, departureDate, manufacturer, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var yourApiKey = yourApiKey_example;  // String | 
            var departureCode = departureCode_example;  // String | 
            var arrivalCode = arrivalCode_example;  // String | 
            var departureDate = departureDate_example;  // String | 
            var manufacturer = manufacturer_example;  // String | 

            try
            {
                inline_response_200_4 result = apiInstance.v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet(apiecoKey, yourApiKey, departureCode, arrivalCode, departureDate, manufacturer);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$yourApiKey = yourApiKey_example; // String | 
$departureCode = departureCode_example; // String | 
$arrivalCode = arrivalCode_example; // String | 
$departureDate = departureDate_example; // String | 
$manufacturer = manufacturer_example; // String | 

try {
    $result = $api_instance->v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet($apiecoKey, $yourApiKey, $departureCode, $arrivalCode, $departureDate, $manufacturer);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $yourApiKey = yourApiKey_example; # String | 
my $departureCode = departureCode_example; # String | 
my $arrivalCode = arrivalCode_example; # String | 
my $departureDate = departureDate_example; # String | 
my $manufacturer = manufacturer_example; # String | 

eval { 
    my $result = $api_instance->v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet(apiecoKey => $apiecoKey, yourApiKey => $yourApiKey, departureCode => $departureCode, arrivalCode => $arrivalCode, departureDate => $departureDate, manufacturer => $manufacturer);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
yourApiKey = yourApiKey_example # String | 
departureCode = departureCode_example # String | 
arrivalCode = arrivalCode_example # String | 
departureDate = departureDate_example # String | 
manufacturer = manufacturer_example # String | 

try: 
    api_response = api_instance.v4_flight_live_one_way_your_api_key_departure_code_arrival_code_departure_date_manufacturer_get(apiecoKey, yourApiKey, departureCode, arrivalCode, departureDate, manufacturer)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightLiveOneWayYourApiKeyDepartureCodeArrivalCodeDepartureDateManufacturerGet: %s\n" % e)

Parameters

Path parameters
Name Description
YourApiKey*
String
Required
DepartureCode*
String
Required
ArrivalCode*
String
Required
DepartureDate*
String
Required
Manufacturer*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet


/V4/Flight/oneway/{ApiKey}/{DepartureCode}/{ArrivalCode}/{DepartureDate}/{Capacity}/{pageSize}/{PageNumber}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/oneway/{ApiKey}/{DepartureCode}/{ArrivalCode}/{DepartureDate}/{Capacity}/{pageSize}/{PageNumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String departureDate = departureDate_example; // String | 
        String capacity = capacity_example; // String | 
        String pageSize = pageSize_example; // String | 
        String pageNumber = pageNumber_example; // String | 
        try {
            inline_response_200_3 result = apiInstance.v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String departureDate = departureDate_example; // String | 
        String capacity = capacity_example; // String | 
        String pageSize = pageSize_example; // String | 
        String pageNumber = pageNumber_example; // String | 
        try {
            inline_response_200_3 result = apiInstance.v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *departureCode = departureCode_example; // 
String *arrivalCode = arrivalCode_example; // 
String *departureDate = departureDate_example; // 
String *capacity = capacity_example; // 
String *pageSize = pageSize_example; // 
String *pageNumber = pageNumber_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGetWith:apiecoKey
    apiKey:apiKey
    departureCode:departureCode
    arrivalCode:arrivalCode
    departureDate:departureDate
    capacity:capacity
    pageSize:pageSize
    pageNumber:pageNumber
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var departureCode = departureCode_example; // {String} 

var arrivalCode = arrivalCode_example; // {String} 

var departureDate = departureDate_example; // {String} 

var capacity = capacity_example; // {String} 

var pageSize = pageSize_example; // {String} 

var pageNumber = pageNumber_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var departureCode = departureCode_example;  // String | 
            var arrivalCode = arrivalCode_example;  // String | 
            var departureDate = departureDate_example;  // String | 
            var capacity = capacity_example;  // String | 
            var pageSize = pageSize_example;  // String | 
            var pageNumber = pageNumber_example;  // String | 

            try
            {
                inline_response_200_3 result = apiInstance.v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$departureCode = departureCode_example; // String | 
$arrivalCode = arrivalCode_example; // String | 
$departureDate = departureDate_example; // String | 
$capacity = capacity_example; // String | 
$pageSize = pageSize_example; // String | 
$pageNumber = pageNumber_example; // String | 

try {
    $result = $api_instance->v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet($apiecoKey, $apiKey, $departureCode, $arrivalCode, $departureDate, $capacity, $pageSize, $pageNumber);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $departureCode = departureCode_example; # String | 
my $arrivalCode = arrivalCode_example; # String | 
my $departureDate = departureDate_example; # String | 
my $capacity = capacity_example; # String | 
my $pageSize = pageSize_example; # String | 
my $pageNumber = pageNumber_example; # String | 

eval { 
    my $result = $api_instance->v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet(apiecoKey => $apiecoKey, apiKey => $apiKey, departureCode => $departureCode, arrivalCode => $arrivalCode, departureDate => $departureDate, capacity => $capacity, pageSize => $pageSize, pageNumber => $pageNumber);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
departureCode = departureCode_example # String | 
arrivalCode = arrivalCode_example # String | 
departureDate = departureDate_example # String | 
capacity = capacity_example # String | 
pageSize = pageSize_example # String | 
pageNumber = pageNumber_example # String | 

try: 
    api_response = api_instance.v4_flight_oneway_api_key_departure_code_arrival_code_departure_date_capacity_page_size_page_number_get(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightOnewayApiKeyDepartureCodeArrivalCodeDepartureDateCapacityPageSizePageNumberGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
DepartureCode*
String
Required
ArrivalCode*
String
Required
DepartureDate*
String
Required
Capacity*
String
Required
pageSize*
String
Required
PageNumber*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet


/V4/Flight/Range/{ApiKey}/{DepartureCode}/{ArrivalCode}/{StartDate}/{EndDate}/{Capacity}/{pageSize}/{PageNumber}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/Range/{ApiKey}/{DepartureCode}/{ArrivalCode}/{StartDate}/{EndDate}/{Capacity}/{pageSize}/{PageNumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String departureDate = departureDate_example; // String | 
        String capacity = capacity_example; // String | 
        String pageSize = pageSize_example; // String | 
        String pageNumber = pageNumber_example; // String | 
        String startDate = startDate_example; // String | 
        String endDate = endDate_example; // String | 
        try {
            inline_response_200_3 result = apiInstance.v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, startDate, endDate);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String departureDate = departureDate_example; // String | 
        String capacity = capacity_example; // String | 
        String pageSize = pageSize_example; // String | 
        String pageNumber = pageNumber_example; // String | 
        String startDate = startDate_example; // String | 
        String endDate = endDate_example; // String | 
        try {
            inline_response_200_3 result = apiInstance.v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, startDate, endDate);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *departureCode = departureCode_example; // 
String *arrivalCode = arrivalCode_example; // 
String *departureDate = departureDate_example; // 
String *capacity = capacity_example; // 
String *pageSize = pageSize_example; // 
String *pageNumber = pageNumber_example; // 
String *startDate = startDate_example; // 
String *endDate = endDate_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGetWith:apiecoKey
    apiKey:apiKey
    departureCode:departureCode
    arrivalCode:arrivalCode
    departureDate:departureDate
    capacity:capacity
    pageSize:pageSize
    pageNumber:pageNumber
    startDate:startDate
    endDate:endDate
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var departureCode = departureCode_example; // {String} 

var arrivalCode = arrivalCode_example; // {String} 

var departureDate = departureDate_example; // {String} 

var capacity = capacity_example; // {String} 

var pageSize = pageSize_example; // {String} 

var pageNumber = pageNumber_example; // {String} 

var startDate = startDate_example; // {String} 

var endDate = endDate_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, startDate, endDate, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var departureCode = departureCode_example;  // String | 
            var arrivalCode = arrivalCode_example;  // String | 
            var departureDate = departureDate_example;  // String | 
            var capacity = capacity_example;  // String | 
            var pageSize = pageSize_example;  // String | 
            var pageNumber = pageNumber_example;  // String | 
            var startDate = startDate_example;  // String | 
            var endDate = endDate_example;  // String | 

            try
            {
                inline_response_200_3 result = apiInstance.v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, startDate, endDate);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$departureCode = departureCode_example; // String | 
$arrivalCode = arrivalCode_example; // String | 
$departureDate = departureDate_example; // String | 
$capacity = capacity_example; // String | 
$pageSize = pageSize_example; // String | 
$pageNumber = pageNumber_example; // String | 
$startDate = startDate_example; // String | 
$endDate = endDate_example; // String | 

try {
    $result = $api_instance->v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet($apiecoKey, $apiKey, $departureCode, $arrivalCode, $departureDate, $capacity, $pageSize, $pageNumber, $startDate, $endDate);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $departureCode = departureCode_example; # String | 
my $arrivalCode = arrivalCode_example; # String | 
my $departureDate = departureDate_example; # String | 
my $capacity = capacity_example; # String | 
my $pageSize = pageSize_example; # String | 
my $pageNumber = pageNumber_example; # String | 
my $startDate = startDate_example; # String | 
my $endDate = endDate_example; # String | 

eval { 
    my $result = $api_instance->v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet(apiecoKey => $apiecoKey, apiKey => $apiKey, departureCode => $departureCode, arrivalCode => $arrivalCode, departureDate => $departureDate, capacity => $capacity, pageSize => $pageSize, pageNumber => $pageNumber, startDate => $startDate, endDate => $endDate);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
departureCode = departureCode_example # String | 
arrivalCode = arrivalCode_example # String | 
departureDate = departureDate_example # String | 
capacity = capacity_example # String | 
pageSize = pageSize_example # String | 
pageNumber = pageNumber_example # String | 
startDate = startDate_example # String | 
endDate = endDate_example # String | 

try: 
    api_response = api_instance.v4_flight_range_api_key_departure_code_arrival_code_start_date_end_date_capacity_page_size_page_number_get(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, startDate, endDate)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightRangeApiKeyDepartureCodeArrivalCodeStartDateEndDateCapacityPageSizePageNumberGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
DepartureCode*
String
Required
ArrivalCode*
String
Required
DepartureDate*
String
Required
Capacity*
String
Required
pageSize*
String
Required
PageNumber*
String
Required
StartDate*
String
Required
EndDate*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightRequestBookYourApiKeyRequestNumberPost


/v4/FlightRequest/Book/{YourApiKey}/{RequestNumber}

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/hiholiday/v4/FlightRequest/Book/{YourApiKey}/{RequestNumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String requestNumber = requestNumber_example; // String | 
        array[body_1] body = ; // array[body_1] | 
        try {
            apiInstance.v4FlightRequestBookYourApiKeyRequestNumberPost(apiecoKey, yourApiKey, requestNumber, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRequestBookYourApiKeyRequestNumberPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String requestNumber = requestNumber_example; // String | 
        array[body_1] body = ; // array[body_1] | 
        try {
            apiInstance.v4FlightRequestBookYourApiKeyRequestNumberPost(apiecoKey, yourApiKey, requestNumber, body);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRequestBookYourApiKeyRequestNumberPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *yourApiKey = yourApiKey_example; // 
String *requestNumber = requestNumber_example; // 
array[body_1] *body = ; //  (optional)

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightRequestBookYourApiKeyRequestNumberPostWith:apiecoKey
    yourApiKey:yourApiKey
    requestNumber:requestNumber
    body:body
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var yourApiKey = yourApiKey_example; // {String} 

var requestNumber = requestNumber_example; // {String} 

var opts = { 
  'body':  // {array[body_1]} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.v4FlightRequestBookYourApiKeyRequestNumberPost(apiecoKey, yourApiKey, requestNumber, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightRequestBookYourApiKeyRequestNumberPostExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var yourApiKey = yourApiKey_example;  // String | 
            var requestNumber = requestNumber_example;  // String | 
            var body = new array[body_1](); // array[body_1] |  (optional) 

            try
            {
                apiInstance.v4FlightRequestBookYourApiKeyRequestNumberPost(apiecoKey, yourApiKey, requestNumber, body);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightRequestBookYourApiKeyRequestNumberPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$yourApiKey = yourApiKey_example; // String | 
$requestNumber = requestNumber_example; // String | 
$body = ; // array[body_1] | 

try {
    $api_instance->v4FlightRequestBookYourApiKeyRequestNumberPost($apiecoKey, $yourApiKey, $requestNumber, $body);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightRequestBookYourApiKeyRequestNumberPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $yourApiKey = yourApiKey_example; # String | 
my $requestNumber = requestNumber_example; # String | 
my $body = [WWW::SwaggerClient::Object::array[body_1]->new()]; # array[body_1] | 

eval { 
    $api_instance->v4FlightRequestBookYourApiKeyRequestNumberPost(apiecoKey => $apiecoKey, yourApiKey => $yourApiKey, requestNumber => $requestNumber, body => $body);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightRequestBookYourApiKeyRequestNumberPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
yourApiKey = yourApiKey_example # String | 
requestNumber = requestNumber_example # String | 
body =  # array[body_1] |  (optional)

try: 
    api_instance.v4_flight_request_book_your_api_key_request_number_post(apiecoKey, yourApiKey, requestNumber, body=body)
except ApiException as e:
    print("Exception when calling _Api->v4FlightRequestBookYourApiKeyRequestNumberPost: %s\n" % e)

Parameters

Path parameters
Name Description
YourApiKey*
String
Required
RequestNumber*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required
Body parameters
Name Description
body

Responses

Status: 200 - 200 response


v4FlightRequestPreReserveYourApiKeySessionIDPost


/v4/FlightRequest/PreReserve/{YourApiKey}/{SessionID}

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/hiholiday/v4/FlightRequest/PreReserve/{YourApiKey}/{SessionID}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String sessionID = sessionID_example; // String | 
        try {
            inline_response_200_9 result = apiInstance.v4FlightRequestPreReserveYourApiKeySessionIDPost(apiecoKey, yourApiKey, sessionID);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRequestPreReserveYourApiKeySessionIDPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String sessionID = sessionID_example; // String | 
        try {
            inline_response_200_9 result = apiInstance.v4FlightRequestPreReserveYourApiKeySessionIDPost(apiecoKey, yourApiKey, sessionID);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRequestPreReserveYourApiKeySessionIDPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *yourApiKey = yourApiKey_example; // 
String *sessionID = sessionID_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightRequestPreReserveYourApiKeySessionIDPostWith:apiecoKey
    yourApiKey:yourApiKey
    sessionID:sessionID
              completionHandler: ^(inline_response_200_9 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var yourApiKey = yourApiKey_example; // {String} 

var sessionID = sessionID_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightRequestPreReserveYourApiKeySessionIDPost(apiecoKey, yourApiKey, sessionID, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightRequestPreReserveYourApiKeySessionIDPostExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var yourApiKey = yourApiKey_example;  // String | 
            var sessionID = sessionID_example;  // String | 

            try
            {
                inline_response_200_9 result = apiInstance.v4FlightRequestPreReserveYourApiKeySessionIDPost(apiecoKey, yourApiKey, sessionID);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightRequestPreReserveYourApiKeySessionIDPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$yourApiKey = yourApiKey_example; // String | 
$sessionID = sessionID_example; // String | 

try {
    $result = $api_instance->v4FlightRequestPreReserveYourApiKeySessionIDPost($apiecoKey, $yourApiKey, $sessionID);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightRequestPreReserveYourApiKeySessionIDPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $yourApiKey = yourApiKey_example; # String | 
my $sessionID = sessionID_example; # String | 

eval { 
    my $result = $api_instance->v4FlightRequestPreReserveYourApiKeySessionIDPost(apiecoKey => $apiecoKey, yourApiKey => $yourApiKey, sessionID => $sessionID);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightRequestPreReserveYourApiKeySessionIDPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
yourApiKey = yourApiKey_example # String | 
sessionID = sessionID_example # String | 

try: 
    api_response = api_instance.v4_flight_request_pre_reserve_your_api_key_session_id_post(apiecoKey, yourApiKey, sessionID)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightRequestPreReserveYourApiKeySessionIDPost: %s\n" % e)

Parameters

Path parameters
Name Description
YourApiKey*
String
Required
SessionID*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightRequestReserveYourApiKeyRequestNumberPost


/v4/FlightRequest/Reserve/{YourApiKey}/{RequestNumber}

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/hiholiday/v4/FlightRequest/Reserve/{YourApiKey}/{RequestNumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String requestNumber = requestNumber_example; // String | 
        try {
            apiInstance.v4FlightRequestReserveYourApiKeyRequestNumberPost(apiecoKey, yourApiKey, requestNumber);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRequestReserveYourApiKeyRequestNumberPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        String requestNumber = requestNumber_example; // String | 
        try {
            apiInstance.v4FlightRequestReserveYourApiKeyRequestNumberPost(apiecoKey, yourApiKey, requestNumber);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRequestReserveYourApiKeyRequestNumberPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *yourApiKey = yourApiKey_example; // 
String *requestNumber = requestNumber_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightRequestReserveYourApiKeyRequestNumberPostWith:apiecoKey
    yourApiKey:yourApiKey
    requestNumber:requestNumber
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var yourApiKey = yourApiKey_example; // {String} 

var requestNumber = requestNumber_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.v4FlightRequestReserveYourApiKeyRequestNumberPost(apiecoKey, yourApiKey, requestNumber, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightRequestReserveYourApiKeyRequestNumberPostExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var yourApiKey = yourApiKey_example;  // String | 
            var requestNumber = requestNumber_example;  // String | 

            try
            {
                apiInstance.v4FlightRequestReserveYourApiKeyRequestNumberPost(apiecoKey, yourApiKey, requestNumber);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightRequestReserveYourApiKeyRequestNumberPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$yourApiKey = yourApiKey_example; // String | 
$requestNumber = requestNumber_example; // String | 

try {
    $api_instance->v4FlightRequestReserveYourApiKeyRequestNumberPost($apiecoKey, $yourApiKey, $requestNumber);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightRequestReserveYourApiKeyRequestNumberPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $yourApiKey = yourApiKey_example; # String | 
my $requestNumber = requestNumber_example; # String | 

eval { 
    $api_instance->v4FlightRequestReserveYourApiKeyRequestNumberPost(apiecoKey => $apiecoKey, yourApiKey => $yourApiKey, requestNumber => $requestNumber);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightRequestReserveYourApiKeyRequestNumberPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
yourApiKey = yourApiKey_example # String | 
requestNumber = requestNumber_example # String | 

try: 
    api_instance.v4_flight_request_reserve_your_api_key_request_number_post(apiecoKey, yourApiKey, requestNumber)
except ApiException as e:
    print("Exception when calling _Api->v4FlightRequestReserveYourApiKeyRequestNumberPost: %s\n" % e)

Parameters

Path parameters
Name Description
YourApiKey*
String
Required
RequestNumber*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4FlightRequestRevalidateYourApiKeyPost


/v4/FlightRequest/Revalidate/{YourApiKey}

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/hiholiday/v4/FlightRequest/Revalidate/{YourApiKey}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        Body body = ; // Body | 
        try {
            inline_response_200_8 result = apiInstance.v4FlightRequestRevalidateYourApiKeyPost(apiecoKey, yourApiKey, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRequestRevalidateYourApiKeyPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String yourApiKey = yourApiKey_example; // String | 
        Body body = ; // Body | 
        try {
            inline_response_200_8 result = apiInstance.v4FlightRequestRevalidateYourApiKeyPost(apiecoKey, yourApiKey, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRequestRevalidateYourApiKeyPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *yourApiKey = yourApiKey_example; // 
Body *body = ; //  (optional)

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightRequestRevalidateYourApiKeyPostWith:apiecoKey
    yourApiKey:yourApiKey
    body:body
              completionHandler: ^(inline_response_200_8 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var yourApiKey = yourApiKey_example; // {String} 

var opts = { 
  'body':  // {Body} 
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightRequestRevalidateYourApiKeyPost(apiecoKey, yourApiKey, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightRequestRevalidateYourApiKeyPostExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var yourApiKey = yourApiKey_example;  // String | 
            var body = new Body(); // Body |  (optional) 

            try
            {
                inline_response_200_8 result = apiInstance.v4FlightRequestRevalidateYourApiKeyPost(apiecoKey, yourApiKey, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightRequestRevalidateYourApiKeyPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$yourApiKey = yourApiKey_example; // String | 
$body = ; // Body | 

try {
    $result = $api_instance->v4FlightRequestRevalidateYourApiKeyPost($apiecoKey, $yourApiKey, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightRequestRevalidateYourApiKeyPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $yourApiKey = yourApiKey_example; # String | 
my $body = WWW::SwaggerClient::Object::Body->new(); # Body | 

eval { 
    my $result = $api_instance->v4FlightRequestRevalidateYourApiKeyPost(apiecoKey => $apiecoKey, yourApiKey => $yourApiKey, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightRequestRevalidateYourApiKeyPost: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
yourApiKey = yourApiKey_example # String | 
body =  # Body |  (optional)

try: 
    api_response = api_instance.v4_flight_request_revalidate_your_api_key_post(apiecoKey, yourApiKey, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightRequestRevalidateYourApiKeyPost: %s\n" % e)

Parameters

Path parameters
Name Description
YourApiKey*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required
Body parameters
Name Description
body

Responses

Status: 200 - 200 response


v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet


/V4/Flight/RoundTrip/{ApiKey}/{DepartureCode}/{ArrivalCode}/{DepartureDate}/{ReturnDate}/{Capacity}/{pageSize}/{PageNumber}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/V4/Flight/RoundTrip/{ApiKey}/{DepartureCode}/{ArrivalCode}/{DepartureDate}/{ReturnDate}/{Capacity}/{pageSize}/{PageNumber}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String departureDate = departureDate_example; // String | 
        String capacity = capacity_example; // String | 
        String pageSize = pageSize_example; // String | 
        String pageNumber = pageNumber_example; // String | 
        String returnDate = returnDate_example; // String | 
        try {
            inline_response_200_3 result = apiInstance.v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, returnDate);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        String departureCode = departureCode_example; // String | 
        String arrivalCode = arrivalCode_example; // String | 
        String departureDate = departureDate_example; // String | 
        String capacity = capacity_example; // String | 
        String pageSize = pageSize_example; // String | 
        String pageNumber = pageNumber_example; // String | 
        String returnDate = returnDate_example; // String | 
        try {
            inline_response_200_3 result = apiInstance.v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, returnDate);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 
String *departureCode = departureCode_example; // 
String *arrivalCode = arrivalCode_example; // 
String *departureDate = departureDate_example; // 
String *capacity = capacity_example; // 
String *pageSize = pageSize_example; // 
String *pageNumber = pageNumber_example; // 
String *returnDate = returnDate_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGetWith:apiecoKey
    apiKey:apiKey
    departureCode:departureCode
    arrivalCode:arrivalCode
    departureDate:departureDate
    capacity:capacity
    pageSize:pageSize
    pageNumber:pageNumber
    returnDate:returnDate
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 

var departureCode = departureCode_example; // {String} 

var arrivalCode = arrivalCode_example; // {String} 

var departureDate = departureDate_example; // {String} 

var capacity = capacity_example; // {String} 

var pageSize = pageSize_example; // {String} 

var pageNumber = pageNumber_example; // {String} 

var returnDate = returnDate_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, returnDate, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 
            var departureCode = departureCode_example;  // String | 
            var arrivalCode = arrivalCode_example;  // String | 
            var departureDate = departureDate_example;  // String | 
            var capacity = capacity_example;  // String | 
            var pageSize = pageSize_example;  // String | 
            var pageNumber = pageNumber_example;  // String | 
            var returnDate = returnDate_example;  // String | 

            try
            {
                inline_response_200_3 result = apiInstance.v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, returnDate);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 
$departureCode = departureCode_example; // String | 
$arrivalCode = arrivalCode_example; // String | 
$departureDate = departureDate_example; // String | 
$capacity = capacity_example; // String | 
$pageSize = pageSize_example; // String | 
$pageNumber = pageNumber_example; // String | 
$returnDate = returnDate_example; // String | 

try {
    $result = $api_instance->v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet($apiecoKey, $apiKey, $departureCode, $arrivalCode, $departureDate, $capacity, $pageSize, $pageNumber, $returnDate);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 
my $departureCode = departureCode_example; # String | 
my $arrivalCode = arrivalCode_example; # String | 
my $departureDate = departureDate_example; # String | 
my $capacity = capacity_example; # String | 
my $pageSize = pageSize_example; # String | 
my $pageNumber = pageNumber_example; # String | 
my $returnDate = returnDate_example; # String | 

eval { 
    my $result = $api_instance->v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet(apiecoKey => $apiecoKey, apiKey => $apiKey, departureCode => $departureCode, arrivalCode => $arrivalCode, departureDate => $departureDate, capacity => $capacity, pageSize => $pageSize, pageNumber => $pageNumber, returnDate => $returnDate);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 
departureCode = departureCode_example # String | 
arrivalCode = arrivalCode_example # String | 
departureDate = departureDate_example # String | 
capacity = capacity_example # String | 
pageSize = pageSize_example # String | 
pageNumber = pageNumber_example # String | 
returnDate = returnDate_example # String | 

try: 
    api_response = api_instance.v4_flight_round_trip_api_key_departure_code_arrival_code_departure_date_return_date_capacity_page_size_page_number_get(apiecoKey, apiKey, departureCode, arrivalCode, departureDate, capacity, pageSize, pageNumber, returnDate)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4FlightRoundTripApiKeyDepartureCodeArrivalCodeDepartureDateReturnDateCapacityPageSizePageNumberGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
DepartureCode*
String
Required
ArrivalCode*
String
Required
DepartureDate*
String
Required
Capacity*
String
Required
pageSize*
String
Required
PageNumber*
String
Required
ReturnDate*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


v4RegionAirportApiKeyGet


/v4/region/airport/{ApiKey}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/hiholiday/v4/region/airport/{ApiKey}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

import java.io.File;
import java.util.*;

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        try {
            inline_response_200 result = apiInstance.v4RegionAirportApiKeyGet(apiecoKey, apiKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4RegionAirportApiKeyGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api._Api;

public class _ApiExample {

    public static void main(String[] args) {
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String apiKey = apiKey_example; // String | 
        try {
            inline_response_200 result = apiInstance.v4RegionAirportApiKeyGet(apiecoKey, apiKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#v4RegionAirportApiKeyGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *apiKey = apiKey_example; // 

_Api *apiInstance = [[_Api alloc] init];

[apiInstance v4RegionAirportApiKeyGetWith:apiecoKey
    apiKey:apiKey
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('_');

var api = new _._Api()

var apiecoKey = apiecoKey_example; // {String} apikey for use API

var apiKey = apiKey_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.v4RegionAirportApiKeyGet(apiecoKey, apiKey, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class v4RegionAirportApiKeyGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var apiKey = apiKey_example;  // String | 

            try
            {
                inline_response_200 result = apiInstance.v4RegionAirportApiKeyGet(apiecoKey, apiKey);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling _Api.v4RegionAirportApiKeyGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$apiKey = apiKey_example; // String | 

try {
    $result = $api_instance->v4RegionAirportApiKeyGet($apiecoKey, $apiKey);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->v4RegionAirportApiKeyGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::_Api;

my $api_instance = WWW::SwaggerClient::_Api->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $apiKey = apiKey_example; # String | 

eval { 
    my $result = $api_instance->v4RegionAirportApiKeyGet(apiecoKey => $apiecoKey, apiKey => $apiKey);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->v4RegionAirportApiKeyGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client._Api()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
apiKey = apiKey_example # String | 

try: 
    api_response = api_instance.v4_region_airport_api_key_get(apiecoKey, apiKey)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->v4RegionAirportApiKeyGet: %s\n" % e)

Parameters

Path parameters
Name Description
ApiKey*
String
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response