وب سرويس پرواز هاي چارتري و سيستمي

BookFlightApi

gdsApiBookFlightApiPost


/gdsApi/BookFlightApi

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/irantech/gdsApi/BookFlightApi"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BookFlightApiApi;

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

public class BookFlightApiApiExample {

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

public class BookFlightApiApiExample {

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

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

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

var api = new _.BookFlightApiApi()

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

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

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

namespace Example
{
    public class gdsApiBookFlightApiPostExample
    {
        public void main()
        {
            
            var apiInstance = new BookFlightApiApi();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var body = new Body_3(); // Body_3 |  (optional) 

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

$api_instance = new Swagger\Client\Api\BookFlightApiApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$body = ; // Body_3 | 

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

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

eval { 
    my $result = $api_instance->gdsApiBookFlightApiPost(apiecoKey => $apiecoKey, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling BookFlightApiApi->gdsApiBookFlightApiPost: $@\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.BookFlightApiApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
body =  # Body_3 |  (optional)

try: 
    api_response = api_instance.gds_api_book_flight_api_post(apiecoKey, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling BookFlightApiApi->gdsApiBookFlightApiPost: %s\n" % e)

Parameters

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

Responses

Status: 200 - 200 response


PreReserveFlightApi

gdsApiPreReserveFlightApiPost


/gdsApi/PreReserveFlightApi

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/irantech/gdsApi/PreReserveFlightApi"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.PreReserveFlightApiApi;

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

public class PreReserveFlightApiApiExample {

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

public class PreReserveFlightApiApiExample {

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

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

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

var api = new _.PreReserveFlightApiApi()

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

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

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

namespace Example
{
    public class gdsApiPreReserveFlightApiPostExample
    {
        public void main()
        {
            
            var apiInstance = new PreReserveFlightApiApi();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var body = new Body_2(); // Body_2 |  (optional) 

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

$api_instance = new Swagger\Client\Api\PreReserveFlightApiApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$body = ; // Body_2 | 

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

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

eval { 
    my $result = $api_instance->gdsApiPreReserveFlightApiPost(apiecoKey => $apiecoKey, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling PreReserveFlightApiApi->gdsApiPreReserveFlightApiPost: $@\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.PreReserveFlightApiApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
body =  # Body_2 |  (optional)

try: 
    api_response = api_instance.gds_api_pre_reserve_flight_api_post(apiecoKey, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling PreReserveFlightApiApi->gdsApiPreReserveFlightApiPost: %s\n" % e)

Parameters

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

Responses

Status: 200 - 200 response


ReserveApi

gdsApiReserveApiPost


/gdsApi/ReserveApi

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/irantech/gdsApi/ReserveApi"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ReserveApiApi;

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

public class ReserveApiApiExample {

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

public class ReserveApiApiExample {

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

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

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

var api = new _.ReserveApiApi()

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

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

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

namespace Example
{
    public class gdsApiReserveApiPostExample
    {
        public void main()
        {
            
            var apiInstance = new ReserveApiApi();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var body = new Body_4(); // Body_4 |  (optional) 

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

$api_instance = new Swagger\Client\Api\ReserveApiApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$body = ; // Body_4 | 

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

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

eval { 
    my $result = $api_instance->gdsApiReserveApiPost(apiecoKey => $apiecoKey, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ReserveApiApi->gdsApiReserveApiPost: $@\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.ReserveApiApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
body =  # Body_4 |  (optional)

try: 
    api_response = api_instance.gds_api_reserve_api_post(apiecoKey, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ReserveApiApi->gdsApiReserveApiPost: %s\n" % e)

Parameters

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

Responses

Status: 200 - 200 response


RevalidateFlightApi

gdsApiRevalidateFlightApiPost


/gdsApi/RevalidateFlightApi

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/irantech/gdsApi/RevalidateFlightApi"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.RevalidateFlightApiApi;

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

public class RevalidateFlightApiApiExample {

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

public class RevalidateFlightApiApiExample {

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

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

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

var api = new _.RevalidateFlightApiApi()

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

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

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

namespace Example
{
    public class gdsApiRevalidateFlightApiPostExample
    {
        public void main()
        {
            
            var apiInstance = new RevalidateFlightApiApi();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var body = new Body_1(); // Body_1 |  (optional) 

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

$api_instance = new Swagger\Client\Api\RevalidateFlightApiApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$body = ; // Body_1 | 

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

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

eval { 
    my $result = $api_instance->gdsApiRevalidateFlightApiPost(apiecoKey => $apiecoKey, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling RevalidateFlightApiApi->gdsApiRevalidateFlightApiPost: $@\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.RevalidateFlightApiApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
body =  # Body_1 |  (optional)

try: 
    api_response = api_instance.gds_api_revalidate_flight_api_post(apiecoKey, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling RevalidateFlightApiApi->gdsApiRevalidateFlightApiPost: %s\n" % e)

Parameters

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

Responses

Status: 200 - 200 response


SearchFlightApi

gdsApiSearchFlightApiPost


/gdsApi/SearchFlightApi

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/irantech/gdsApi/SearchFlightApi"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.SearchFlightApiApi;

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

public class SearchFlightApiApiExample {

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

public class SearchFlightApiApiExample {

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

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

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

var api = new _.SearchFlightApiApi()

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

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.gdsApiSearchFlightApiPost(apiecoKey, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

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

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

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

eval { 
    my $result = $api_instance->gdsApiSearchFlightApiPost(apiecoKey => $apiecoKey, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling SearchFlightApiApi->gdsApiSearchFlightApiPost: $@\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.SearchFlightApiApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
body =  # Body |  (optional)

try: 
    api_response = api_instance.gds_api_search_flight_api_post(apiecoKey, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling SearchFlightApiApi->gdsApiSearchFlightApiPost: %s\n" % e)

Parameters

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

Responses

Status: 200 - 200 response