Introduction

AddHiddenDescription

apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost


/api/v2/orders/{order_id}/address/{address_id}/hidden_description

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/alopeyk/api/v2/orders/{order_id}/address/{address_id}/hidden_description"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AddHiddenDescriptionApi;

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

public class AddHiddenDescriptionApiExample {

    public static void main(String[] args) {
        
        AddHiddenDescriptionApi apiInstance = new AddHiddenDescriptionApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String contentType = contentType_example; // String | 
        String orderId = orderId_example; // String | 
        String addressId = addressId_example; // String | 
        Body_5 body = ; // Body_5 | Request Parameters
        try {
            inline_response_200_6 result = apiInstance.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost(authorization, xRequestedWith, contentType, orderId, addressId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AddHiddenDescriptionApi#apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.AddHiddenDescriptionApi;

public class AddHiddenDescriptionApiExample {

    public static void main(String[] args) {
        AddHiddenDescriptionApi apiInstance = new AddHiddenDescriptionApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String contentType = contentType_example; // String | 
        String orderId = orderId_example; // String | 
        String addressId = addressId_example; // String | 
        Body_5 body = ; // Body_5 | Request Parameters
        try {
            inline_response_200_6 result = apiInstance.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost(authorization, xRequestedWith, contentType, orderId, addressId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling AddHiddenDescriptionApi#apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *xRequestedWith = xRequestedWith_example; //  (default to XMLHttpRequest)
String *contentType = contentType_example; //  (default to application/json; charset=utf-8)
String *orderId = orderId_example; // 
String *addressId = addressId_example; // 
Body_5 *body = ; // Request Parameters (optional)

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

[apiInstance apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPostWith:authorization
    xRequestedWith:xRequestedWith
    contentType:contentType
    orderId:orderId
    addressId:addressId
    body:body
              completionHandler: ^(inline_response_200_6 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.AddHiddenDescriptionApi()

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

var xRequestedWith = xRequestedWith_example; // {String} 

var contentType = contentType_example; // {String} 

var orderId = orderId_example; // {String} 

var addressId = addressId_example; // {String} 

var opts = { 
  'body':  // {Body_5} Request Parameters
};

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

namespace Example
{
    public class apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPostExample
    {
        public void main()
        {
            
            var apiInstance = new AddHiddenDescriptionApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var xRequestedWith = xRequestedWith_example;  // String |  (default to XMLHttpRequest)
            var contentType = contentType_example;  // String |  (default to application/json; charset=utf-8)
            var orderId = orderId_example;  // String | 
            var addressId = addressId_example;  // String | 
            var body = new Body_5(); // Body_5 | Request Parameters (optional) 

            try
            {
                inline_response_200_6 result = apiInstance.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost(authorization, xRequestedWith, contentType, orderId, addressId, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling AddHiddenDescriptionApi.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\AddHiddenDescriptionApi();
$authorization = authorization_example; // String | apikey for use API
$xRequestedWith = xRequestedWith_example; // String | 
$contentType = contentType_example; // String | 
$orderId = orderId_example; // String | 
$addressId = addressId_example; // String | 
$body = ; // Body_5 | Request Parameters

try {
    $result = $api_instance->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost($authorization, $xRequestedWith, $contentType, $orderId, $addressId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling AddHiddenDescriptionApi->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::AddHiddenDescriptionApi;

my $api_instance = WWW::SwaggerClient::AddHiddenDescriptionApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $xRequestedWith = xRequestedWith_example; # String | 
my $contentType = contentType_example; # String | 
my $orderId = orderId_example; # String | 
my $addressId = addressId_example; # String | 
my $body = WWW::SwaggerClient::Object::Body_5->new(); # Body_5 | Request Parameters

eval { 
    my $result = $api_instance->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost(authorization => $authorization, xRequestedWith => $xRequestedWith, contentType => $contentType, orderId => $orderId, addressId => $addressId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling AddHiddenDescriptionApi->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost: $@\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.AddHiddenDescriptionApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
xRequestedWith = xRequestedWith_example # String |  (default to XMLHttpRequest)
contentType = contentType_example # String |  (default to application/json; charset=utf-8)
orderId = orderId_example # String | 
addressId = addressId_example # String | 
body =  # Body_5 | Request Parameters (optional)

try: 
    api_response = api_instance.api_v2_orders_order_id_address_address_id_hidden_description_post(authorization, xRequestedWith, contentType, orderId, addressId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AddHiddenDescriptionApi->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionPost: %s\n" % e)

Parameters

Path parameters
Name Description
order_id*
String
Required
address_id*
String
Required
Header parameters
Name Description
Authorization*
String
apikey for use API
Required
X-Requested-With*
String
Required
Content-Type*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - 200 response


BatchPrice

apiV2OrdersBatchPricePost


/api/v2/orders/batch-price

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/alopeyk/api/v2/orders/batch-price"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BatchPriceApi;

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

public class BatchPriceApiExample {

    public static void main(String[] args) {
        
        BatchPriceApi apiInstance = new BatchPriceApi();
        String authorization = authorization_example; // String | apikey for use API
        Body_1 body = ; // Body_1 | Request Parameters
        try {
            inline_response_200_1 result = apiInstance.apiV2OrdersBatchPricePost(authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling BatchPriceApi#apiV2OrdersBatchPricePost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BatchPriceApi;

public class BatchPriceApiExample {

    public static void main(String[] args) {
        BatchPriceApi apiInstance = new BatchPriceApi();
        String authorization = authorization_example; // String | apikey for use API
        Body_1 body = ; // Body_1 | Request Parameters
        try {
            inline_response_200_1 result = apiInstance.apiV2OrdersBatchPricePost(authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling BatchPriceApi#apiV2OrdersBatchPricePost");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
Body_1 *body = ; // Request Parameters (optional)

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

[apiInstance apiV2OrdersBatchPricePostWith:authorization
    body:body
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.BatchPriceApi()

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

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

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

namespace Example
{
    public class apiV2OrdersBatchPricePostExample
    {
        public void main()
        {
            
            var apiInstance = new BatchPriceApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var body = new Body_1(); // Body_1 | Request Parameters (optional) 

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

$api_instance = new Swagger\Client\Api\BatchPriceApi();
$authorization = authorization_example; // String | apikey for use API
$body = ; // Body_1 | Request Parameters

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

my $api_instance = WWW::SwaggerClient::BatchPriceApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $body = WWW::SwaggerClient::Object::Body_1->new(); # Body_1 | Request Parameters

eval { 
    my $result = $api_instance->apiV2OrdersBatchPricePost(authorization => $authorization, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling BatchPriceApi->apiV2OrdersBatchPricePost: $@\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.BatchPriceApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
body =  # Body_1 | Request Parameters (optional)

try: 
    api_response = api_instance.api_v2_orders_batch_price_post(authorization, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling BatchPriceApi->apiV2OrdersBatchPricePost: %s\n" % e)

Parameters

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

Responses

Status: 200 - ok


CancelOrder

apiV2OrdersOrderIdCancelGet


/api/v2/orders/{order_id}/cancel

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/alopeyk/api/v2/orders/{order_id}/cancel"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CancelOrderApi;

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

public class CancelOrderApiExample {

    public static void main(String[] args) {
        
        CancelOrderApi apiInstance = new CancelOrderApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String orderId = orderId_example; // String | 
        try {
            inline_response_200_4 result = apiInstance.apiV2OrdersOrderIdCancelGet(authorization, xRequestedWith, orderId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CancelOrderApi#apiV2OrdersOrderIdCancelGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CancelOrderApi;

public class CancelOrderApiExample {

    public static void main(String[] args) {
        CancelOrderApi apiInstance = new CancelOrderApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String orderId = orderId_example; // String | 
        try {
            inline_response_200_4 result = apiInstance.apiV2OrdersOrderIdCancelGet(authorization, xRequestedWith, orderId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CancelOrderApi#apiV2OrdersOrderIdCancelGet");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *xRequestedWith = xRequestedWith_example; //  (default to XMLHttpRequest)
String *orderId = orderId_example; // 

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

[apiInstance apiV2OrdersOrderIdCancelGetWith:authorization
    xRequestedWith:xRequestedWith
    orderId:orderId
              completionHandler: ^(inline_response_200_4 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.CancelOrderApi()

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

var xRequestedWith = xRequestedWith_example; // {String} 

var orderId = orderId_example; // {String} 


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

namespace Example
{
    public class apiV2OrdersOrderIdCancelGetExample
    {
        public void main()
        {
            
            var apiInstance = new CancelOrderApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var xRequestedWith = xRequestedWith_example;  // String |  (default to XMLHttpRequest)
            var orderId = orderId_example;  // String | 

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

$api_instance = new Swagger\Client\Api\CancelOrderApi();
$authorization = authorization_example; // String | apikey for use API
$xRequestedWith = xRequestedWith_example; // String | 
$orderId = orderId_example; // String | 

try {
    $result = $api_instance->apiV2OrdersOrderIdCancelGet($authorization, $xRequestedWith, $orderId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling CancelOrderApi->apiV2OrdersOrderIdCancelGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::CancelOrderApi;

my $api_instance = WWW::SwaggerClient::CancelOrderApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $xRequestedWith = xRequestedWith_example; # String | 
my $orderId = orderId_example; # String | 

eval { 
    my $result = $api_instance->apiV2OrdersOrderIdCancelGet(authorization => $authorization, xRequestedWith => $xRequestedWith, orderId => $orderId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CancelOrderApi->apiV2OrdersOrderIdCancelGet: $@\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.CancelOrderApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
xRequestedWith = xRequestedWith_example # String |  (default to XMLHttpRequest)
orderId = orderId_example # String | 

try: 
    api_response = api_instance.api_v2_orders_order_id_cancel_get(authorization, xRequestedWith, orderId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CancelOrderApi->apiV2OrdersOrderIdCancelGet: %s\n" % e)

Parameters

Path parameters
Name Description
order_id*
String
Required
Header parameters
Name Description
Authorization*
String
apikey for use API
Required
X-Requested-With*
String
Required

Responses

Status: 200 - 200 response


CreateOrder

apiV2OrdersPost


/api/v2/orders

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/alopeyk/api/v2/orders"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.CreateOrderApi;

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

public class CreateOrderApiExample {

    public static void main(String[] args) {
        
        CreateOrderApi apiInstance = new CreateOrderApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String contentType = contentType_example; // String | 
        Body_2 body = ; // Body_2 | Request Parameters
        try {
            inline_response_200_2 result = apiInstance.apiV2OrdersPost(authorization, xRequestedWith, contentType, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CreateOrderApi#apiV2OrdersPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.CreateOrderApi;

public class CreateOrderApiExample {

    public static void main(String[] args) {
        CreateOrderApi apiInstance = new CreateOrderApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String contentType = contentType_example; // String | 
        Body_2 body = ; // Body_2 | Request Parameters
        try {
            inline_response_200_2 result = apiInstance.apiV2OrdersPost(authorization, xRequestedWith, contentType, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling CreateOrderApi#apiV2OrdersPost");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *xRequestedWith = xRequestedWith_example; //  (default to XMLHttpRequest)
String *contentType = contentType_example; //  (default to application/json; charset=utf-8)
Body_2 *body = ; // Request Parameters (optional)

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

[apiInstance apiV2OrdersPostWith:authorization
    xRequestedWith:xRequestedWith
    contentType:contentType
    body:body
              completionHandler: ^(inline_response_200_2 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.CreateOrderApi()

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

var xRequestedWith = xRequestedWith_example; // {String} 

var contentType = contentType_example; // {String} 

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

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

namespace Example
{
    public class apiV2OrdersPostExample
    {
        public void main()
        {
            
            var apiInstance = new CreateOrderApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var xRequestedWith = xRequestedWith_example;  // String |  (default to XMLHttpRequest)
            var contentType = contentType_example;  // String |  (default to application/json; charset=utf-8)
            var body = new Body_2(); // Body_2 | Request Parameters (optional) 

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

$api_instance = new Swagger\Client\Api\CreateOrderApi();
$authorization = authorization_example; // String | apikey for use API
$xRequestedWith = xRequestedWith_example; // String | 
$contentType = contentType_example; // String | 
$body = ; // Body_2 | Request Parameters

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

my $api_instance = WWW::SwaggerClient::CreateOrderApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $xRequestedWith = xRequestedWith_example; # String | 
my $contentType = contentType_example; # String | 
my $body = WWW::SwaggerClient::Object::Body_2->new(); # Body_2 | Request Parameters

eval { 
    my $result = $api_instance->apiV2OrdersPost(authorization => $authorization, xRequestedWith => $xRequestedWith, contentType => $contentType, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling CreateOrderApi->apiV2OrdersPost: $@\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.CreateOrderApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
xRequestedWith = xRequestedWith_example # String |  (default to XMLHttpRequest)
contentType = contentType_example # String |  (default to application/json; charset=utf-8)
body =  # Body_2 | Request Parameters (optional)

try: 
    api_response = api_instance.api_v2_orders_post(authorization, xRequestedWith, contentType, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling CreateOrderApi->apiV2OrdersPost: %s\n" % e)

Parameters

Header parameters
Name Description
Authorization*
String
apikey for use API
Required
X-Requested-With*
String
Required
Content-Type*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - ok


DeleteHiddenDescription

apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete


/api/v2/orders/{order_id}/address/{address_id}/hidden_description/{hidden_description_id}

Usage and SDK Samples

curl -X DELETE "https://api.apieco.ir/alopeyk/api/v2/orders/{order_id}/address/{address_id}/hidden_description/{hidden_description_id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DeleteHiddenDescriptionApi;

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

public class DeleteHiddenDescriptionApiExample {

    public static void main(String[] args) {
        
        DeleteHiddenDescriptionApi apiInstance = new DeleteHiddenDescriptionApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String contentType = contentType_example; // String | 
        String orderId = orderId_example; // String | 
        String addressId = addressId_example; // String | 
        String hiddenDescriptionId = hiddenDescriptionId_example; // String | 
        try {
            inline_response_200_7 result = apiInstance.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete(authorization, xRequestedWith, contentType, orderId, addressId, hiddenDescriptionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeleteHiddenDescriptionApi#apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DeleteHiddenDescriptionApi;

public class DeleteHiddenDescriptionApiExample {

    public static void main(String[] args) {
        DeleteHiddenDescriptionApi apiInstance = new DeleteHiddenDescriptionApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String contentType = contentType_example; // String | 
        String orderId = orderId_example; // String | 
        String addressId = addressId_example; // String | 
        String hiddenDescriptionId = hiddenDescriptionId_example; // String | 
        try {
            inline_response_200_7 result = apiInstance.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete(authorization, xRequestedWith, contentType, orderId, addressId, hiddenDescriptionId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DeleteHiddenDescriptionApi#apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *xRequestedWith = xRequestedWith_example; //  (default to XMLHttpRequest)
String *contentType = contentType_example; //  (default to application/json; charset=utf-8)
String *orderId = orderId_example; // 
String *addressId = addressId_example; // 
String *hiddenDescriptionId = hiddenDescriptionId_example; // 

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

[apiInstance apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDeleteWith:authorization
    xRequestedWith:xRequestedWith
    contentType:contentType
    orderId:orderId
    addressId:addressId
    hiddenDescriptionId:hiddenDescriptionId
              completionHandler: ^(inline_response_200_7 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.DeleteHiddenDescriptionApi()

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

var xRequestedWith = xRequestedWith_example; // {String} 

var contentType = contentType_example; // {String} 

var orderId = orderId_example; // {String} 

var addressId = addressId_example; // {String} 

var hiddenDescriptionId = hiddenDescriptionId_example; // {String} 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete(authorization, xRequestedWith, contentType, orderId, addressId, hiddenDescriptionId, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDeleteExample
    {
        public void main()
        {
            
            var apiInstance = new DeleteHiddenDescriptionApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var xRequestedWith = xRequestedWith_example;  // String |  (default to XMLHttpRequest)
            var contentType = contentType_example;  // String |  (default to application/json; charset=utf-8)
            var orderId = orderId_example;  // String | 
            var addressId = addressId_example;  // String | 
            var hiddenDescriptionId = hiddenDescriptionId_example;  // String | 

            try
            {
                inline_response_200_7 result = apiInstance.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete(authorization, xRequestedWith, contentType, orderId, addressId, hiddenDescriptionId);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DeleteHiddenDescriptionApi.apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\DeleteHiddenDescriptionApi();
$authorization = authorization_example; // String | apikey for use API
$xRequestedWith = xRequestedWith_example; // String | 
$contentType = contentType_example; // String | 
$orderId = orderId_example; // String | 
$addressId = addressId_example; // String | 
$hiddenDescriptionId = hiddenDescriptionId_example; // String | 

try {
    $result = $api_instance->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete($authorization, $xRequestedWith, $contentType, $orderId, $addressId, $hiddenDescriptionId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DeleteHiddenDescriptionApi->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DeleteHiddenDescriptionApi;

my $api_instance = WWW::SwaggerClient::DeleteHiddenDescriptionApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $xRequestedWith = xRequestedWith_example; # String | 
my $contentType = contentType_example; # String | 
my $orderId = orderId_example; # String | 
my $addressId = addressId_example; # String | 
my $hiddenDescriptionId = hiddenDescriptionId_example; # String | 

eval { 
    my $result = $api_instance->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete(authorization => $authorization, xRequestedWith => $xRequestedWith, contentType => $contentType, orderId => $orderId, addressId => $addressId, hiddenDescriptionId => $hiddenDescriptionId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DeleteHiddenDescriptionApi->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete: $@\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.DeleteHiddenDescriptionApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
xRequestedWith = xRequestedWith_example # String |  (default to XMLHttpRequest)
contentType = contentType_example # String |  (default to application/json; charset=utf-8)
orderId = orderId_example # String | 
addressId = addressId_example # String | 
hiddenDescriptionId = hiddenDescriptionId_example # String | 

try: 
    api_response = api_instance.api_v2_orders_order_id_address_address_id_hidden_description_hidden_description_id_delete(authorization, xRequestedWith, contentType, orderId, addressId, hiddenDescriptionId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DeleteHiddenDescriptionApi->apiV2OrdersOrderIdAddressAddressIdHiddenDescriptionHiddenDescriptionIdDelete: %s\n" % e)

Parameters

Path parameters
Name Description
order_id*
String
Required
address_id*
String
Required
hidden_description_id*
String
Required
Header parameters
Name Description
Authorization*
String
apikey for use API
Required
X-Requested-With*
String
Required
Content-Type*
String
Required

Responses

Status: 200 - 200 response


EditOrder

apiV2OrdersOrderIdPut


/api/v2/orders/{order_id}/

Usage and SDK Samples

curl -X PUT "https://api.apieco.ir/alopeyk/api/v2/orders/{order_id}/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.EditOrderApi;

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

public class EditOrderApiExample {

    public static void main(String[] args) {
        
        EditOrderApi apiInstance = new EditOrderApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String orderId = orderId_example; // String | 
        Body_4 body = ; // Body_4 | Request Parameters
        try {
            inline_response_200_3 result = apiInstance.apiV2OrdersOrderIdPut(authorization, xRequestedWith, orderId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling EditOrderApi#apiV2OrdersOrderIdPut");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.EditOrderApi;

public class EditOrderApiExample {

    public static void main(String[] args) {
        EditOrderApi apiInstance = new EditOrderApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String orderId = orderId_example; // String | 
        Body_4 body = ; // Body_4 | Request Parameters
        try {
            inline_response_200_3 result = apiInstance.apiV2OrdersOrderIdPut(authorization, xRequestedWith, orderId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling EditOrderApi#apiV2OrdersOrderIdPut");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *xRequestedWith = xRequestedWith_example; //  (default to XMLHttpRequest)
String *orderId = orderId_example; // 
Body_4 *body = ; // Request Parameters (optional)

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

[apiInstance apiV2OrdersOrderIdPutWith:authorization
    xRequestedWith:xRequestedWith
    orderId:orderId
    body:body
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.EditOrderApi()

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

var xRequestedWith = xRequestedWith_example; // {String} 

var orderId = orderId_example; // {String} 

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

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

namespace Example
{
    public class apiV2OrdersOrderIdPutExample
    {
        public void main()
        {
            
            var apiInstance = new EditOrderApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var xRequestedWith = xRequestedWith_example;  // String |  (default to XMLHttpRequest)
            var orderId = orderId_example;  // String | 
            var body = new Body_4(); // Body_4 | Request Parameters (optional) 

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

$api_instance = new Swagger\Client\Api\EditOrderApi();
$authorization = authorization_example; // String | apikey for use API
$xRequestedWith = xRequestedWith_example; // String | 
$orderId = orderId_example; // String | 
$body = ; // Body_4 | Request Parameters

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

my $api_instance = WWW::SwaggerClient::EditOrderApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $xRequestedWith = xRequestedWith_example; # String | 
my $orderId = orderId_example; # String | 
my $body = WWW::SwaggerClient::Object::Body_4->new(); # Body_4 | Request Parameters

eval { 
    my $result = $api_instance->apiV2OrdersOrderIdPut(authorization => $authorization, xRequestedWith => $xRequestedWith, orderId => $orderId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling EditOrderApi->apiV2OrdersOrderIdPut: $@\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.EditOrderApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
xRequestedWith = xRequestedWith_example # String |  (default to XMLHttpRequest)
orderId = orderId_example # String | 
body =  # Body_4 | Request Parameters (optional)

try: 
    api_response = api_instance.api_v2_orders_order_id_put(authorization, xRequestedWith, orderId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling EditOrderApi->apiV2OrdersOrderIdPut: %s\n" % e)

Parameters

Path parameters
Name Description
order_id*
String
Required
Header parameters
Name Description
Authorization*
String
apikey for use API
Required
X-Requested-With*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - 200 response


GetAddress

apiV2LocationsGet


/api/v2/locations/

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/alopeyk/api/v2/locations/?latlng=&input="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetAddressApi;

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

public class GetAddressApiExample {

    public static void main(String[] args) {
        
        GetAddressApi apiInstance = new GetAddressApi();
        String authorization = authorization_example; // String | apikey for use API
        String latlng = latlng_example; // String | Fill this parameter with your place latitude and longitude
        String input = input_example; // String | Fill this parameter with your search input
        try {
            inline_response_200 result = apiInstance.apiV2LocationsGet(authorization, latlng, input);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetAddressApi#apiV2LocationsGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GetAddressApi;

public class GetAddressApiExample {

    public static void main(String[] args) {
        GetAddressApi apiInstance = new GetAddressApi();
        String authorization = authorization_example; // String | apikey for use API
        String latlng = latlng_example; // String | Fill this parameter with your place latitude and longitude
        String input = input_example; // String | Fill this parameter with your search input
        try {
            inline_response_200 result = apiInstance.apiV2LocationsGet(authorization, latlng, input);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetAddressApi#apiV2LocationsGet");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *latlng = latlng_example; // Fill this parameter with your place latitude and longitude
String *input = input_example; // Fill this parameter with your search input

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

[apiInstance apiV2LocationsGetWith:authorization
    latlng:latlng
    input:input
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.GetAddressApi()

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

var latlng = latlng_example; // {String} Fill this parameter with your place latitude and longitude

var input = input_example; // {String} Fill this parameter with your search input


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

namespace Example
{
    public class apiV2LocationsGetExample
    {
        public void main()
        {
            
            var apiInstance = new GetAddressApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var latlng = latlng_example;  // String | Fill this parameter with your place latitude and longitude
            var input = input_example;  // String | Fill this parameter with your search input

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

$api_instance = new Swagger\Client\Api\GetAddressApi();
$authorization = authorization_example; // String | apikey for use API
$latlng = latlng_example; // String | Fill this parameter with your place latitude and longitude
$input = input_example; // String | Fill this parameter with your search input

try {
    $result = $api_instance->apiV2LocationsGet($authorization, $latlng, $input);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GetAddressApi->apiV2LocationsGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GetAddressApi;

my $api_instance = WWW::SwaggerClient::GetAddressApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $latlng = latlng_example; # String | Fill this parameter with your place latitude and longitude
my $input = input_example; # String | Fill this parameter with your search input

eval { 
    my $result = $api_instance->apiV2LocationsGet(authorization => $authorization, latlng => $latlng, input => $input);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GetAddressApi->apiV2LocationsGet: $@\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.GetAddressApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
latlng = latlng_example # String | Fill this parameter with your place latitude and longitude
input = input_example # String | Fill this parameter with your search input

try: 
    api_response = api_instance.api_v2_locations_get(authorization, latlng, input)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GetAddressApi->apiV2LocationsGet: %s\n" % e)

Parameters

Header parameters
Name Description
Authorization*
String
apikey for use API
Required
Query parameters
Name Description
latlng*
String
Fill this parameter with your place latitude and longitude
Required
input*
String
Fill this parameter with your search input
Required

Responses

Status: 200 - ok


GetOrderDetail

apiV2OrdersOrderIdGet


/api/v2/orders/{order_id}

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/alopeyk/api/v2/orders/{order_id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetOrderDetailApi;

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

public class GetOrderDetailApiExample {

    public static void main(String[] args) {
        
        GetOrderDetailApi apiInstance = new GetOrderDetailApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String orderId = orderId_example; // String | 
        try {
            inline_response_200_3 result = apiInstance.apiV2OrdersOrderIdGet(authorization, xRequestedWith, orderId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetOrderDetailApi#apiV2OrdersOrderIdGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.GetOrderDetailApi;

public class GetOrderDetailApiExample {

    public static void main(String[] args) {
        GetOrderDetailApi apiInstance = new GetOrderDetailApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String orderId = orderId_example; // String | 
        try {
            inline_response_200_3 result = apiInstance.apiV2OrdersOrderIdGet(authorization, xRequestedWith, orderId);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling GetOrderDetailApi#apiV2OrdersOrderIdGet");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *xRequestedWith = xRequestedWith_example; //  (default to XMLHttpRequest)
String *orderId = orderId_example; // 

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

[apiInstance apiV2OrdersOrderIdGetWith:authorization
    xRequestedWith:xRequestedWith
    orderId:orderId
              completionHandler: ^(inline_response_200_3 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.GetOrderDetailApi()

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

var xRequestedWith = xRequestedWith_example; // {String} 

var orderId = orderId_example; // {String} 


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

namespace Example
{
    public class apiV2OrdersOrderIdGetExample
    {
        public void main()
        {
            
            var apiInstance = new GetOrderDetailApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var xRequestedWith = xRequestedWith_example;  // String |  (default to XMLHttpRequest)
            var orderId = orderId_example;  // String | 

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

$api_instance = new Swagger\Client\Api\GetOrderDetailApi();
$authorization = authorization_example; // String | apikey for use API
$xRequestedWith = xRequestedWith_example; // String | 
$orderId = orderId_example; // String | 

try {
    $result = $api_instance->apiV2OrdersOrderIdGet($authorization, $xRequestedWith, $orderId);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling GetOrderDetailApi->apiV2OrdersOrderIdGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::GetOrderDetailApi;

my $api_instance = WWW::SwaggerClient::GetOrderDetailApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $xRequestedWith = xRequestedWith_example; # String | 
my $orderId = orderId_example; # String | 

eval { 
    my $result = $api_instance->apiV2OrdersOrderIdGet(authorization => $authorization, xRequestedWith => $xRequestedWith, orderId => $orderId);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling GetOrderDetailApi->apiV2OrdersOrderIdGet: $@\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.GetOrderDetailApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
xRequestedWith = xRequestedWith_example # String |  (default to XMLHttpRequest)
orderId = orderId_example # String | 

try: 
    api_response = api_instance.api_v2_orders_order_id_get(authorization, xRequestedWith, orderId)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling GetOrderDetailApi->apiV2OrdersOrderIdGet: %s\n" % e)

Parameters

Path parameters
Name Description
order_id*
String
Required
Header parameters
Name Description
Authorization*
String
apikey for use API
Required
X-Requested-With*
String
Required

Responses

Status: 200 - ok


NormalPrice

apiV2OrdersPriceCalcPost


/api/v2/orders/price/calc

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/alopeyk/api/v2/orders/price/calc"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.NormalPriceApi;

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

public class NormalPriceApiExample {

    public static void main(String[] args) {
        
        NormalPriceApi apiInstance = new NormalPriceApi();
        String authorization = authorization_example; // String | apikey for use API
        Body body = ; // Body | Request Parameters
        try {
            inline_response_200_1 result = apiInstance.apiV2OrdersPriceCalcPost(authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling NormalPriceApi#apiV2OrdersPriceCalcPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.NormalPriceApi;

public class NormalPriceApiExample {

    public static void main(String[] args) {
        NormalPriceApi apiInstance = new NormalPriceApi();
        String authorization = authorization_example; // String | apikey for use API
        Body body = ; // Body | Request Parameters
        try {
            inline_response_200_1 result = apiInstance.apiV2OrdersPriceCalcPost(authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling NormalPriceApi#apiV2OrdersPriceCalcPost");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
Body *body = ; // Request Parameters (optional)

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

[apiInstance apiV2OrdersPriceCalcPostWith:authorization
    body:body
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.NormalPriceApi()

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

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

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

namespace Example
{
    public class apiV2OrdersPriceCalcPostExample
    {
        public void main()
        {
            
            var apiInstance = new NormalPriceApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var body = new Body(); // Body | Request Parameters (optional) 

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

$api_instance = new Swagger\Client\Api\NormalPriceApi();
$authorization = authorization_example; // String | apikey for use API
$body = ; // Body | Request Parameters

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

my $api_instance = WWW::SwaggerClient::NormalPriceApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $body = WWW::SwaggerClient::Object::Body->new(); # Body | Request Parameters

eval { 
    my $result = $api_instance->apiV2OrdersPriceCalcPost(authorization => $authorization, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling NormalPriceApi->apiV2OrdersPriceCalcPost: $@\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.NormalPriceApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
body =  # Body | Request Parameters (optional)

try: 
    api_response = api_instance.api_v2_orders_price_calc_post(authorization, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling NormalPriceApi->apiV2OrdersPriceCalcPost: %s\n" % e)

Parameters

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

Responses

Status: 200 - ok


RateOrder

v2OrdersOrderIdFinishPost


/v2/orders/{order_id}/finish

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/alopeyk/v2/orders/{order_id}/finish"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.RateOrderApi;

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

public class RateOrderApiExample {

    public static void main(String[] args) {
        
        RateOrderApi apiInstance = new RateOrderApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String contentType = contentType_example; // String | 
        String orderId = orderId_example; // String | 
        Body_3 body = ; // Body_3 | Request Parameters
        try {
            inline_response_200_5 result = apiInstance.v2OrdersOrderIdFinishPost(authorization, xRequestedWith, contentType, orderId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling RateOrderApi#v2OrdersOrderIdFinishPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.RateOrderApi;

public class RateOrderApiExample {

    public static void main(String[] args) {
        RateOrderApi apiInstance = new RateOrderApi();
        String authorization = authorization_example; // String | apikey for use API
        String xRequestedWith = xRequestedWith_example; // String | 
        String contentType = contentType_example; // String | 
        String orderId = orderId_example; // String | 
        Body_3 body = ; // Body_3 | Request Parameters
        try {
            inline_response_200_5 result = apiInstance.v2OrdersOrderIdFinishPost(authorization, xRequestedWith, contentType, orderId, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling RateOrderApi#v2OrdersOrderIdFinishPost");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *xRequestedWith = xRequestedWith_example; //  (default to XMLHttpRequest)
String *contentType = contentType_example; //  (default to application/json; charset=utf-8)
String *orderId = orderId_example; // 
Body_3 *body = ; // Request Parameters (optional)

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

[apiInstance v2OrdersOrderIdFinishPostWith:authorization
    xRequestedWith:xRequestedWith
    contentType:contentType
    orderId:orderId
    body:body
              completionHandler: ^(inline_response_200_5 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.RateOrderApi()

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

var xRequestedWith = xRequestedWith_example; // {String} 

var contentType = contentType_example; // {String} 

var orderId = orderId_example; // {String} 

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

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

namespace Example
{
    public class v2OrdersOrderIdFinishPostExample
    {
        public void main()
        {
            
            var apiInstance = new RateOrderApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var xRequestedWith = xRequestedWith_example;  // String |  (default to XMLHttpRequest)
            var contentType = contentType_example;  // String |  (default to application/json; charset=utf-8)
            var orderId = orderId_example;  // String | 
            var body = new Body_3(); // Body_3 | Request Parameters (optional) 

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

$api_instance = new Swagger\Client\Api\RateOrderApi();
$authorization = authorization_example; // String | apikey for use API
$xRequestedWith = xRequestedWith_example; // String | 
$contentType = contentType_example; // String | 
$orderId = orderId_example; // String | 
$body = ; // Body_3 | Request Parameters

try {
    $result = $api_instance->v2OrdersOrderIdFinishPost($authorization, $xRequestedWith, $contentType, $orderId, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling RateOrderApi->v2OrdersOrderIdFinishPost: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::RateOrderApi;

my $api_instance = WWW::SwaggerClient::RateOrderApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $xRequestedWith = xRequestedWith_example; # String | 
my $contentType = contentType_example; # String | 
my $orderId = orderId_example; # String | 
my $body = WWW::SwaggerClient::Object::Body_3->new(); # Body_3 | Request Parameters

eval { 
    my $result = $api_instance->v2OrdersOrderIdFinishPost(authorization => $authorization, xRequestedWith => $xRequestedWith, contentType => $contentType, orderId => $orderId, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling RateOrderApi->v2OrdersOrderIdFinishPost: $@\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.RateOrderApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
xRequestedWith = xRequestedWith_example # String |  (default to XMLHttpRequest)
contentType = contentType_example # String |  (default to application/json; charset=utf-8)
orderId = orderId_example # String | 
body =  # Body_3 | Request Parameters (optional)

try: 
    api_response = api_instance.v2_orders_order_id_finish_post(authorization, xRequestedWith, contentType, orderId, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling RateOrderApi->v2OrdersOrderIdFinishPost: %s\n" % e)

Parameters

Path parameters
Name Description
order_id*
String
Required
Header parameters
Name Description
Authorization*
String
apikey for use API
Required
X-Requested-With*
String
Required
Content-Type*
String
Required
Body parameters
Name Description
body

Responses

Status: 200 - 200 response


Tracking

orderTokenGet


/#/order_token

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/alopeyk/#/order_token?logo=&customer_image=&customer_name=&show_payment_status=&show_order_price=&show_courier_phone=&show_order_info_box="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.TrackingApi;

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

public class TrackingApiExample {

    public static void main(String[] args) {
        
        TrackingApi apiInstance = new TrackingApi();
        String authorization = authorization_example; // String | apikey for use API
        String logo = logo_example; // String | Replace default “alopeyk logo” with your custom logo.
        String customerImage = customerImage_example; // String | Replace your alopeyk profile image with your own customer image.
        String customerName = customerName_example; // String | Replace your alopeyk profile name with your own customer name.
        Boolean showPaymentStatus = true; // Boolean | By sending false for this variable, you can hide payment status.
        Boolean showOrderPrice = true; // Boolean | By sending false for this variable as value, you can hide order price box.
        Boolean showCourierPhone = true; // Boolean | By sending false for this variable, you can hide courier phone number.
        Boolean showOrderInfoBox = true; // Boolean | By sending false for this variable as value, you can hide order info box.
        try {
            apiInstance.orderTokenGet(authorization, logo, customerImage, customerName, showPaymentStatus, showOrderPrice, showCourierPhone, showOrderInfoBox);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrackingApi#orderTokenGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.TrackingApi;

public class TrackingApiExample {

    public static void main(String[] args) {
        TrackingApi apiInstance = new TrackingApi();
        String authorization = authorization_example; // String | apikey for use API
        String logo = logo_example; // String | Replace default “alopeyk logo” with your custom logo.
        String customerImage = customerImage_example; // String | Replace your alopeyk profile image with your own customer image.
        String customerName = customerName_example; // String | Replace your alopeyk profile name with your own customer name.
        Boolean showPaymentStatus = true; // Boolean | By sending false for this variable, you can hide payment status.
        Boolean showOrderPrice = true; // Boolean | By sending false for this variable as value, you can hide order price box.
        Boolean showCourierPhone = true; // Boolean | By sending false for this variable, you can hide courier phone number.
        Boolean showOrderInfoBox = true; // Boolean | By sending false for this variable as value, you can hide order info box.
        try {
            apiInstance.orderTokenGet(authorization, logo, customerImage, customerName, showPaymentStatus, showOrderPrice, showCourierPhone, showOrderInfoBox);
        } catch (ApiException e) {
            System.err.println("Exception when calling TrackingApi#orderTokenGet");
            e.printStackTrace();
        }
    }
}
String *authorization = authorization_example; // apikey for use API (default to Bearer {$token})
String *logo = logo_example; // Replace default “alopeyk logo” with your custom logo. (optional)
String *customerImage = customerImage_example; // Replace your alopeyk profile image with your own customer image. (optional)
String *customerName = customerName_example; // Replace your alopeyk profile name with your own customer name. (optional)
Boolean *showPaymentStatus = true; // By sending false for this variable, you can hide payment status. (optional)
Boolean *showOrderPrice = true; // By sending false for this variable as value, you can hide order price box. (optional)
Boolean *showCourierPhone = true; // By sending false for this variable, you can hide courier phone number. (optional)
Boolean *showOrderInfoBox = true; // By sending false for this variable as value, you can hide order info box. (optional)

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

[apiInstance orderTokenGetWith:authorization
    logo:logo
    customerImage:customerImage
    customerName:customerName
    showPaymentStatus:showPaymentStatus
    showOrderPrice:showOrderPrice
    showCourierPhone:showCourierPhone
    showOrderInfoBox:showOrderInfoBox
              completionHandler: ^(NSError* error) {
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var Introduction = require('introduction');

var api = new Introduction.TrackingApi()

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

var opts = { 
  'logo': logo_example, // {String} Replace default “alopeyk logo” with your custom logo.
  'customerImage': customerImage_example, // {String} Replace your alopeyk profile image with your own customer image.
  'customerName': customerName_example, // {String} Replace your alopeyk profile name with your own customer name.
  'showPaymentStatus': true, // {Boolean} By sending false for this variable, you can hide payment status.
  'showOrderPrice': true, // {Boolean} By sending false for this variable as value, you can hide order price box.
  'showCourierPhone': true, // {Boolean} By sending false for this variable, you can hide courier phone number.
  'showOrderInfoBox': true // {Boolean} By sending false for this variable as value, you can hide order info box.
};

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

namespace Example
{
    public class orderTokenGetExample
    {
        public void main()
        {
            
            var apiInstance = new TrackingApi();
            var authorization = authorization_example;  // String | apikey for use API (default to Bearer {$token})
            var logo = logo_example;  // String | Replace default “alopeyk logo” with your custom logo. (optional) 
            var customerImage = customerImage_example;  // String | Replace your alopeyk profile image with your own customer image. (optional) 
            var customerName = customerName_example;  // String | Replace your alopeyk profile name with your own customer name. (optional) 
            var showPaymentStatus = true;  // Boolean | By sending false for this variable, you can hide payment status. (optional) 
            var showOrderPrice = true;  // Boolean | By sending false for this variable as value, you can hide order price box. (optional) 
            var showCourierPhone = true;  // Boolean | By sending false for this variable, you can hide courier phone number. (optional) 
            var showOrderInfoBox = true;  // Boolean | By sending false for this variable as value, you can hide order info box. (optional) 

            try
            {
                apiInstance.orderTokenGet(authorization, logo, customerImage, customerName, showPaymentStatus, showOrderPrice, showCourierPhone, showOrderInfoBox);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling TrackingApi.orderTokenGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\Api\TrackingApi();
$authorization = authorization_example; // String | apikey for use API
$logo = logo_example; // String | Replace default “alopeyk logo” with your custom logo.
$customerImage = customerImage_example; // String | Replace your alopeyk profile image with your own customer image.
$customerName = customerName_example; // String | Replace your alopeyk profile name with your own customer name.
$showPaymentStatus = true; // Boolean | By sending false for this variable, you can hide payment status.
$showOrderPrice = true; // Boolean | By sending false for this variable as value, you can hide order price box.
$showCourierPhone = true; // Boolean | By sending false for this variable, you can hide courier phone number.
$showOrderInfoBox = true; // Boolean | By sending false for this variable as value, you can hide order info box.

try {
    $api_instance->orderTokenGet($authorization, $logo, $customerImage, $customerName, $showPaymentStatus, $showOrderPrice, $showCourierPhone, $showOrderInfoBox);
} catch (Exception $e) {
    echo 'Exception when calling TrackingApi->orderTokenGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::TrackingApi;

my $api_instance = WWW::SwaggerClient::TrackingApi->new();
my $authorization = authorization_example; # String | apikey for use API
my $logo = logo_example; # String | Replace default “alopeyk logo” with your custom logo.
my $customerImage = customerImage_example; # String | Replace your alopeyk profile image with your own customer image.
my $customerName = customerName_example; # String | Replace your alopeyk profile name with your own customer name.
my $showPaymentStatus = true; # Boolean | By sending false for this variable, you can hide payment status.
my $showOrderPrice = true; # Boolean | By sending false for this variable as value, you can hide order price box.
my $showCourierPhone = true; # Boolean | By sending false for this variable, you can hide courier phone number.
my $showOrderInfoBox = true; # Boolean | By sending false for this variable as value, you can hide order info box.

eval { 
    $api_instance->orderTokenGet(authorization => $authorization, logo => $logo, customerImage => $customerImage, customerName => $customerName, showPaymentStatus => $showPaymentStatus, showOrderPrice => $showOrderPrice, showCourierPhone => $showCourierPhone, showOrderInfoBox => $showOrderInfoBox);
};
if ($@) {
    warn "Exception when calling TrackingApi->orderTokenGet: $@\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.TrackingApi()
authorization = authorization_example # String | apikey for use API (default to Bearer {$token})
logo = logo_example # String | Replace default “alopeyk logo” with your custom logo. (optional)
customerImage = customerImage_example # String | Replace your alopeyk profile image with your own customer image. (optional)
customerName = customerName_example # String | Replace your alopeyk profile name with your own customer name. (optional)
showPaymentStatus = true # Boolean | By sending false for this variable, you can hide payment status. (optional)
showOrderPrice = true # Boolean | By sending false for this variable as value, you can hide order price box. (optional)
showCourierPhone = true # Boolean | By sending false for this variable, you can hide courier phone number. (optional)
showOrderInfoBox = true # Boolean | By sending false for this variable as value, you can hide order info box. (optional)

try: 
    api_instance.order_token_get(authorization, logo=logo, customerImage=customerImage, customerName=customerName, showPaymentStatus=showPaymentStatus, showOrderPrice=showOrderPrice, showCourierPhone=showCourierPhone, showOrderInfoBox=showOrderInfoBox)
except ApiException as e:
    print("Exception when calling TrackingApi->orderTokenGet: %s\n" % e)

Parameters

Header parameters
Name Description
Authorization*
String
apikey for use API
Required
Query parameters
Name Description
logo
customer_image
String
Replace your alopeyk profile image with your own customer image.
customer_name
String
Replace your alopeyk profile name with your own customer name.
show_payment_status
Boolean
By sending false for this variable, you can hide payment status.
show_order_price
Boolean
By sending false for this variable as value, you can hide order price box.
show_courier_phone
Boolean
By sending false for this variable, you can hide courier phone number.
show_order_info_box
Boolean
By sending false for this variable as value, you can hide order info box.

Responses

Status: 200 - 200 response