Farsi calendar

FarsiCalendar

apiTypeDayMonthYearGet


/api/{type}/{day}/{month}/{year}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/farsicalendar/api/{type}/{day}/{month}/{year}?category=&lang=&limit="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.FarsiCalendarApi;

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

public class FarsiCalendarApiExample {

    public static void main(String[] args) {
        
        FarsiCalendarApi apiInstance = new FarsiCalendarApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String type = type_example; // String | مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).
        Integer day = 56; // Integer | انتخاب روز
        Integer month = 56; // Integer | انتخاب ماه
        String year = year_example; // String | انتخاب موضوع
        String category = category_example; // String | انتخاب موضوع
        String lang = lang_example; // String | نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs 
        String limit = limit_example; // String | برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید :
        try {
            inline_response_200 result = apiInstance.apiTypeDayMonthYearGet(apiecoKey, type, day, month, year, category, lang, limit);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling FarsiCalendarApi#apiTypeDayMonthYearGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.FarsiCalendarApi;

public class FarsiCalendarApiExample {

    public static void main(String[] args) {
        FarsiCalendarApi apiInstance = new FarsiCalendarApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String type = type_example; // String | مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).
        Integer day = 56; // Integer | انتخاب روز
        Integer month = 56; // Integer | انتخاب ماه
        String year = year_example; // String | انتخاب موضوع
        String category = category_example; // String | انتخاب موضوع
        String lang = lang_example; // String | نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs 
        String limit = limit_example; // String | برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید :
        try {
            inline_response_200 result = apiInstance.apiTypeDayMonthYearGet(apiecoKey, type, day, month, year, category, lang, limit);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling FarsiCalendarApi#apiTypeDayMonthYearGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *type = type_example; // مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).
Integer *day = 56; // انتخاب روز
Integer *month = 56; // انتخاب ماه
String *year = year_example; // انتخاب موضوع
String *category = category_example; // انتخاب موضوع (optional) (default to api/sh/29/12?category=iran api/wc/25/7?category=wwi,wwii)
String *lang = lang_example; // نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs  (optional) (default to prs)
String *limit = limit_example; // برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید : (optional)

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

[apiInstance apiTypeDayMonthYearGetWith:apiecoKey
    type:type
    day:day
    month:month
    year:year
    category:category
    lang:lang
    limit:limit
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var FarsiCalendar = require('farsi_calendar');

var api = new FarsiCalendar.FarsiCalendarApi()

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

var type = type_example; // {String} مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).

var day = 56; // {Integer} انتخاب روز

var month = 56; // {Integer} انتخاب ماه

var year = year_example; // {String} انتخاب موضوع

var opts = { 
  'category': category_example, // {String} انتخاب موضوع
  'lang': lang_example, // {String} نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs 
  'limit': limit_example // {String} برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید :
};

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

namespace Example
{
    public class apiTypeDayMonthYearGetExample
    {
        public void main()
        {
            
            var apiInstance = new FarsiCalendarApi();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var type = type_example;  // String | مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).
            var day = 56;  // Integer | انتخاب روز
            var month = 56;  // Integer | انتخاب ماه
            var year = year_example;  // String | انتخاب موضوع
            var category = category_example;  // String | انتخاب موضوع (optional)  (default to api/sh/29/12?category=iran api/wc/25/7?category=wwi,wwii)
            var lang = lang_example;  // String | نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs  (optional)  (default to prs)
            var limit = limit_example;  // String | برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید : (optional) 

            try
            {
                inline_response_200 result = apiInstance.apiTypeDayMonthYearGet(apiecoKey, type, day, month, year, category, lang, limit);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling FarsiCalendarApi.apiTypeDayMonthYearGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\FarsiCalendarApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$type = type_example; // String | مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).
$day = 56; // Integer | انتخاب روز
$month = 56; // Integer | انتخاب ماه
$year = year_example; // String | انتخاب موضوع
$category = category_example; // String | انتخاب موضوع
$lang = lang_example; // String | نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs 
$limit = limit_example; // String | برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید :

try {
    $result = $api_instance->apiTypeDayMonthYearGet($apiecoKey, $type, $day, $month, $year, $category, $lang, $limit);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling FarsiCalendarApi->apiTypeDayMonthYearGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::FarsiCalendarApi;

my $api_instance = WWW::SwaggerClient::FarsiCalendarApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $type = type_example; # String | مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).
my $day = 56; # Integer | انتخاب روز
my $month = 56; # Integer | انتخاب ماه
my $year = year_example; # String | انتخاب موضوع
my $category = category_example; # String | انتخاب موضوع
my $lang = lang_example; # String | نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs 
my $limit = limit_example; # String | برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید :

eval { 
    my $result = $api_instance->apiTypeDayMonthYearGet(apiecoKey => $apiecoKey, type => $type, day => $day, month => $month, year => $year, category => $category, lang => $lang, limit => $limit);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling FarsiCalendarApi->apiTypeDayMonthYearGet: $@\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.FarsiCalendarApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
type = type_example # String | مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).
day = 56 # Integer | انتخاب روز
month = 56 # Integer | انتخاب ماه
year = year_example # String | انتخاب موضوع
category = category_example # String | انتخاب موضوع (optional) (default to api/sh/29/12?category=iran api/wc/25/7?category=wwi,wwii)
lang = lang_example # String | نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs  (optional) (default to prs)
limit = limit_example # String | برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید : (optional)

try: 
    api_response = api_instance.api_type_day_month_year_get(apiecoKey, type, day, month, year, category=category, lang=lang, limit=limit)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling FarsiCalendarApi->apiTypeDayMonthYearGet: %s\n" % e)

Parameters

Path parameters
Name Description
type*
String
مقادیر معتبر فعلی برای type عبارت است از هجری شمسی (SH = Solar Hijri Calendar)، هجری قمری (IC = Islamic Calendar) و میلادی (WC = World Calendar).
Required
day*
Integer
انتخاب روز
Required
month*
Integer
انتخاب ماه
Required
year*
String
انتخاب موضوع
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required
Query parameters
Name Description
category
String
انتخاب موضوع
lang
String
نتایج ارسالی به دو زبان فارسی و انگلیسی قابل دسترسی است. زبان پیش فرض فارسی میباشد en , prs
limit
String
برای محدود کردن تعداد نتایج ارسالی میتوانید با مقدار دهی به پارامتر limit محدودیت مورد نظر خود را اعمال کنید :

Responses

Status: 200 - 200 response


_

apiCategoryGet


/api/category

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/farsicalendar/api/category"
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
        try {
            inline_response_200_2 result = apiInstance.apiCategoryGet(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiCategoryGet");
            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
        try {
            inline_response_200_2 result = apiInstance.apiCategoryGet(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiCategoryGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)

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

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

var api = new FarsiCalendar._Api()

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


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

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

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

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

try {
    $result = $api_instance->apiCategoryGet($apiecoKey);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiCategoryGet: ', $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

eval { 
    my $result = $api_instance->apiCategoryGet(apiecoKey => $apiecoKey);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiCategoryGet: $@\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)

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

Parameters

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

Responses

Status: 200 - 200 response


apiDetailsIdGet


/api/details/{id}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/farsicalendar/api/details/{id}"
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 id = id_example; // String | شماره رکورد
        try {
            inline_response_200_3 result = apiInstance.apiDetailsIdGet(apiecoKey, id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiDetailsIdGet");
            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 id = id_example; // String | شماره رکورد
        try {
            inline_response_200_3 result = apiInstance.apiDetailsIdGet(apiecoKey, id);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiDetailsIdGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *id = id_example; // شماره رکورد

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

[apiInstance apiDetailsIdGetWith:apiecoKey
    id:id
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var FarsiCalendar = require('farsi_calendar');

var api = new FarsiCalendar._Api()

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

var id = id_example; // {String} شماره رکورد


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

namespace Example
{
    public class apiDetailsIdGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var id = id_example;  // String | شماره رکورد

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

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$id = id_example; // String | شماره رکورد

try {
    $result = $api_instance->apiDetailsIdGet($apiecoKey, $id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiDetailsIdGet: ', $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 $id = id_example; # String | شماره رکورد

eval { 
    my $result = $api_instance->apiDetailsIdGet(apiecoKey => $apiecoKey, id => $id);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiDetailsIdGet: $@\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)
id = id_example # String | شماره رکورد

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

Parameters

Path parameters
Name Description
id*
String
شماره رکورد
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required

Responses

Status: 200 - 200 response


apiTypeGet


/api/type

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/farsicalendar/api/type"
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
        try {
            inline_response_200_1 result = apiInstance.apiTypeGet(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiTypeGet");
            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
        try {
            inline_response_200_1 result = apiInstance.apiTypeGet(apiecoKey);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiTypeGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)

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

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

var api = new FarsiCalendar._Api()

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


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

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

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

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

try {
    $result = $api_instance->apiTypeGet($apiecoKey);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiTypeGet: ', $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

eval { 
    my $result = $api_instance->apiTypeGet(apiecoKey => $apiecoKey);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiTypeGet: $@\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)

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

Parameters

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

Responses

Status: 200 - 200 response