درگاه پرداخت نکست پی

_

gatewayPaymentTransIdPost


/gateway/payment/{trans_id}

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/nextpay/gateway/payment/{trans_id}"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api._Api;

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

public class _ApiExample {

    public static void main(String[] args) {
        
        _Api apiInstance = new _Api();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String transId = transId_example; // String | apikey for use API
        try {
            apiInstance.gatewayPaymentTransIdPost(apiecoKey, transId);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#gatewayPaymentTransIdPost");
            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 transId = transId_example; // String | apikey for use API
        try {
            apiInstance.gatewayPaymentTransIdPost(apiecoKey, transId);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#gatewayPaymentTransIdPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *transId = transId_example; // apikey for use API

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

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

var api = new _._Api()

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

var transId = transId_example; // {String} apikey for use API


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

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

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

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

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

eval { 
    $api_instance->gatewayPaymentTransIdPost(apiecoKey => $apiecoKey, transId => $transId);
};
if ($@) {
    warn "Exception when calling _Api->gatewayPaymentTransIdPost: $@\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)
transId = transId_example # String | apikey for use API

try: 
    api_instance.gateway_payment_trans_id_post(apiecoKey, transId)
except ApiException as e:
    print("Exception when calling _Api->gatewayPaymentTransIdPost: %s\n" % e)

Parameters

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

Responses

Status: 200 - 200 response


gatewayTokenHttpPost


/gateway/token.http

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/nextpay/gateway/token.http"
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
        array[body] body = ; // array[body] | 
        try {
            inline_response_200 result = apiInstance.gatewayTokenHttpPost(apiecoKey, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#gatewayTokenHttpPost");
            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
        array[body] body = ; // array[body] | 
        try {
            inline_response_200 result = apiInstance.gatewayTokenHttpPost(apiecoKey, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling _Api#gatewayTokenHttpPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
array[body] *body = ; //  (optional)

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

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

var api = new _._Api()

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

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

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

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

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

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

try {
    $result = $api_instance->gatewayTokenHttpPost($apiecoKey, $body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling _Api->gatewayTokenHttpPost: ', $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 $body = [WWW::SwaggerClient::Object::array[body]->new()]; # array[body] | 

eval { 
    my $result = $api_instance->gatewayTokenHttpPost(apiecoKey => $apiecoKey, body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling _Api->gatewayTokenHttpPost: $@\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)
body =  # array[body] |  (optional)

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

Parameters

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

Responses

Status: 200 - 200 response