پیشخوان پستی تاپین TAPIN

_

apiV1WebserviceLocationCitiesProvinceCodeGet


/api/v1/webservice/location/cities/{province_code}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/tapin/api/v1/webservice/location/cities/{province_code}"
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 authorization = authorization_example; // String | apikey for use API
        BigDecimal provinceCode = 8.14; // BigDecimal | کد استان
        try {
            inline_response_200_1 result = apiInstance.apiV1WebserviceLocationCitiesProvinceCodeGet(apiecoKey, authorization, provinceCode);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceLocationCitiesProvinceCodeGet");
            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 authorization = authorization_example; // String | apikey for use API
        BigDecimal provinceCode = 8.14; // BigDecimal | کد استان
        try {
            inline_response_200_1 result = apiInstance.apiV1WebserviceLocationCitiesProvinceCodeGet(apiecoKey, authorization, provinceCode);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceLocationCitiesProvinceCodeGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // apikey for use API
BigDecimal *provinceCode = 8.14; // کد استان

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

[apiInstance apiV1WebserviceLocationCitiesProvinceCodeGetWith:apiecoKey
    authorization:authorization
    provinceCode:provinceCode
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Tapin = require('___tapin');

var api = new Tapin._Api()

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

var authorization = authorization_example; // {String} apikey for use API

var provinceCode = 8.14; // {BigDecimal} کد استان


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

namespace Example
{
    public class apiV1WebserviceLocationCitiesProvinceCodeGetExample
    {
        public void main()
        {
            
            var apiInstance = new _Api();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var authorization = authorization_example;  // String | apikey for use API
            var provinceCode = 8.14;  // BigDecimal | کد استان

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

$api_instance = new Swagger\Client\Api\_Api();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$authorization = authorization_example; // String | apikey for use API
$provinceCode = 8.14; // BigDecimal | کد استان

try {
    $result = $api_instance->apiV1WebserviceLocationCitiesProvinceCodeGet($apiecoKey, $authorization, $provinceCode);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiV1WebserviceLocationCitiesProvinceCodeGet: ', $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 $authorization = authorization_example; # String | apikey for use API
my $provinceCode = 8.14; # BigDecimal | کد استان

eval { 
    my $result = $api_instance->apiV1WebserviceLocationCitiesProvinceCodeGet(apiecoKey => $apiecoKey, authorization => $authorization, provinceCode => $provinceCode);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiV1WebserviceLocationCitiesProvinceCodeGet: $@\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)
authorization = authorization_example # String | apikey for use API
provinceCode = 8.14 # BigDecimal | کد استان

try: 
    api_response = api_instance.api_v1_webservice_location_cities_province_code_get(apiecoKey, authorization, provinceCode)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling _Api->apiV1WebserviceLocationCitiesProvinceCodeGet: %s\n" % e)

Parameters

Path parameters
Name Description
province_code*
BigDecimal
کد استان
Required
Header parameters
Name Description
apieco-key*
String
apikey for use API
Required
Authorization*
String
apikey for use API
Required

Responses

Status: 200 - دریافت کد شهر و نام شهر


apiV1WebserviceOrderChangeStatusGet


/api/v1/webservice/order/change-status/

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/tapin/api/v1/webservice/order/change-status/"
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 authorization = authorization_example; // String | apikey for use API
        try {
            inline_response_200 result = apiInstance.apiV1WebserviceOrderChangeStatusGet(apiecoKey, authorization);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderChangeStatusGet");
            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 authorization = authorization_example; // String | apikey for use API
        try {
            inline_response_200 result = apiInstance.apiV1WebserviceOrderChangeStatusGet(apiecoKey, authorization);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderChangeStatusGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // apikey for use API

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

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

var api = new Tapin._Api()

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

var authorization = authorization_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.apiV1WebserviceOrderChangeStatusGet(apiecoKey, authorization, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

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

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

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

try {
    $result = $api_instance->apiV1WebserviceOrderChangeStatusGet($apiecoKey, $authorization);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiV1WebserviceOrderChangeStatusGet: ', $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 $authorization = authorization_example; # String | apikey for use API

eval { 
    my $result = $api_instance->apiV1WebserviceOrderChangeStatusGet(apiecoKey => $apiecoKey, authorization => $authorization);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiV1WebserviceOrderChangeStatusGet: $@\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)
authorization = authorization_example # String | apikey for use API

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

Parameters

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

Responses

Status: 200 - دریافت نام و کد استان


apiV1WebserviceOrderChangeStatusPost


/api/v1/webservice/order/change-status

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/tapin/api/v1/webservice/order/change-status"
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 authorization = authorization_example; // String | apikey for use API
        Body_4 body = ; // Body_4 | 
        try {
            inline_response_200_6 result = apiInstance.apiV1WebserviceOrderChangeStatusPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderChangeStatusPost");
            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 authorization = authorization_example; // String | apikey for use API
        Body_4 body = ; // Body_4 | 
        try {
            inline_response_200_6 result = apiInstance.apiV1WebserviceOrderChangeStatusPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderChangeStatusPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // apikey for use API
Body_4 *body = ; //  (optional)

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

[apiInstance apiV1WebserviceOrderChangeStatusPostWith:apiecoKey
    authorization:authorization
    body:body
              completionHandler: ^(inline_response_200_6 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Tapin = require('___tapin');

var api = new Tapin._Api()

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

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

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

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

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

try {
    $result = $api_instance->apiV1WebserviceOrderChangeStatusPost($apiecoKey, $authorization, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiV1WebserviceOrderChangeStatusPost: ', $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 $authorization = authorization_example; # String | apikey for use API
my $body = WWW::SwaggerClient::Object::Body_4->new(); # Body_4 | 

eval { 
    my $result = $api_instance->apiV1WebserviceOrderChangeStatusPost(apiecoKey => $apiecoKey, authorization => $authorization, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiV1WebserviceOrderChangeStatusPost: $@\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)
authorization = authorization_example # String | apikey for use API
body =  # Body_4 |  (optional)

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

Parameters

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

Responses

Status: 200 - ok


apiV1WebserviceOrderCheckPricePost


/api/v1/webservice/order/check-price

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/tapin/api/v1/webservice/order/check-price"
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 authorization = authorization_example; // String | apikey for use API
        Body_1 body = ; // Body_1 | 
        try {
            inline_response_200_3 result = apiInstance.apiV1WebserviceOrderCheckPricePost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderCheckPricePost");
            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 authorization = authorization_example; // String | apikey for use API
        Body_1 body = ; // Body_1 | 
        try {
            inline_response_200_3 result = apiInstance.apiV1WebserviceOrderCheckPricePost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderCheckPricePost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // apikey for use API
Body_1 *body = ; //  (optional)

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

[apiInstance apiV1WebserviceOrderCheckPricePostWith:apiecoKey
    authorization:authorization
    body:body
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Tapin = require('___tapin');

var api = new Tapin._Api()

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

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

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

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

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

try {
    $result = $api_instance->apiV1WebserviceOrderCheckPricePost($apiecoKey, $authorization, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiV1WebserviceOrderCheckPricePost: ', $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 $authorization = authorization_example; # String | apikey for use API
my $body = WWW::SwaggerClient::Object::Body_1->new(); # Body_1 | 

eval { 
    my $result = $api_instance->apiV1WebserviceOrderCheckPricePost(apiecoKey => $apiecoKey, authorization => $authorization, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiV1WebserviceOrderCheckPricePost: $@\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)
authorization = authorization_example # String | apikey for use API
body =  # Body_1 |  (optional)

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

Parameters

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

Responses

Status: 200 - لیست قیمت


apiV1WebserviceOrderListPost


/api/v1/webservice/order/list

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/tapin/api/v1/webservice/order/list"
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 authorization = authorization_example; // String | apikey for use API
        Body_3 body = ; // Body_3 | 
        try {
            inline_response_200_5 result = apiInstance.apiV1WebserviceOrderListPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderListPost");
            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 authorization = authorization_example; // String | apikey for use API
        Body_3 body = ; // Body_3 | 
        try {
            inline_response_200_5 result = apiInstance.apiV1WebserviceOrderListPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderListPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // apikey for use API
Body_3 *body = ; //  (optional)

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

[apiInstance apiV1WebserviceOrderListPostWith:apiecoKey
    authorization:authorization
    body:body
              completionHandler: ^(inline_response_200_5 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Tapin = require('___tapin');

var api = new Tapin._Api()

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

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

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

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

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

try {
    $result = $api_instance->apiV1WebserviceOrderListPost($apiecoKey, $authorization, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiV1WebserviceOrderListPost: ', $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 $authorization = authorization_example; # String | apikey for use API
my $body = WWW::SwaggerClient::Object::Body_3->new(); # Body_3 | 

eval { 
    my $result = $api_instance->apiV1WebserviceOrderListPost(apiecoKey => $apiecoKey, authorization => $authorization, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiV1WebserviceOrderListPost: $@\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)
authorization = authorization_example # String | apikey for use API
body =  # Body_3 |  (optional)

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

Parameters

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

Responses

Status: 200 - ok


apiV1WebserviceOrderRegisterPost


/api/v1/webservice/order/register

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/tapin/api/v1/webservice/order/register"
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 authorization = authorization_example; // String | apikey for use API
        Body_2 body = ; // Body_2 | 
        try {
            inline_response_200_4 result = apiInstance.apiV1WebserviceOrderRegisterPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderRegisterPost");
            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 authorization = authorization_example; // String | apikey for use API
        Body_2 body = ; // Body_2 | 
        try {
            inline_response_200_4 result = apiInstance.apiV1WebserviceOrderRegisterPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceOrderRegisterPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // apikey for use API
Body_2 *body = ; //  (optional)

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

[apiInstance apiV1WebserviceOrderRegisterPostWith:apiecoKey
    authorization:authorization
    body:body
              completionHandler: ^(inline_response_200_4 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Tapin = require('___tapin');

var api = new Tapin._Api()

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

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

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

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

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

try {
    $result = $api_instance->apiV1WebserviceOrderRegisterPost($apiecoKey, $authorization, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiV1WebserviceOrderRegisterPost: ', $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 $authorization = authorization_example; # String | apikey for use API
my $body = WWW::SwaggerClient::Object::Body_2->new(); # Body_2 | 

eval { 
    my $result = $api_instance->apiV1WebserviceOrderRegisterPost(apiecoKey => $apiecoKey, authorization => $authorization, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiV1WebserviceOrderRegisterPost: $@\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)
authorization = authorization_example # String | apikey for use API
body =  # Body_2 |  (optional)

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

Parameters

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

Responses

Status: 200 - دریافت شناسه فروشگاه ثبت شده


apiV1WebserviceProductListPost


/api/v1/webservice/product/list/

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/tapin/api/v1/webservice/product/list/"
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 authorization = authorization_example; // String | apikey for use API
        Body body = ; // Body | 
        try {
            inline_response_200_2 result = apiInstance.apiV1WebserviceProductListPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceProductListPost");
            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 authorization = authorization_example; // String | apikey for use API
        Body body = ; // Body | 
        try {
            inline_response_200_2 result = apiInstance.apiV1WebserviceProductListPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#apiV1WebserviceProductListPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // apikey for use API
Body *body = ; //  (optional)

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

[apiInstance apiV1WebserviceProductListPostWith:apiecoKey
    authorization:authorization
    body:body
              completionHandler: ^(inline_response_200_2 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Tapin = require('___tapin');

var api = new Tapin._Api()

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

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

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

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

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

try {
    $result = $api_instance->apiV1WebserviceProductListPost($apiecoKey, $authorization, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->apiV1WebserviceProductListPost: ', $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 $authorization = authorization_example; # String | apikey for use API
my $body = WWW::SwaggerClient::Object::Body->new(); # Body | 

eval { 
    my $result = $api_instance->apiV1WebserviceProductListPost(apiecoKey => $apiecoKey, authorization => $authorization, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->apiV1WebserviceProductListPost: $@\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)
authorization = authorization_example # String | apikey for use API
body =  # Body |  (optional)

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

Parameters

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

Responses

Status: 200 - دریافت محصولات ثبت شده