استعلام علامت استاندارد

Standard

rootGet


/

Usage and SDK Samples

curl -X GET "https://api.apieco.ir/searchline/?token=&LicenseNumber=&op="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.StandardApi;

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

public class StandardApiExample {

    public static void main(String[] args) {
        
        StandardApi apiInstance = new StandardApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String token = token_example; // String | token
        String licenseNumber = licenseNumber_example; // String | شماره پروانه
        String op = op_example; // String | Standard همیشه
        try {
            inline_response_200 result = apiInstance.rootGet(apiecoKey, token, licenseNumber, op);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling StandardApi#rootGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.StandardApi;

public class StandardApiExample {

    public static void main(String[] args) {
        StandardApi apiInstance = new StandardApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String token = token_example; // String | token
        String licenseNumber = licenseNumber_example; // String | شماره پروانه
        String op = op_example; // String | Standard همیشه
        try {
            inline_response_200 result = apiInstance.rootGet(apiecoKey, token, licenseNumber, op);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling StandardApi#rootGet");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *token = token_example; // token
String *licenseNumber = licenseNumber_example; // شماره پروانه
String *op = op_example; // Standard همیشه (default to Standard)

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

[apiInstance rootGetWith:apiecoKey
    token:token
    licenseNumber:licenseNumber
    op:op
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('__');

var api = new _.StandardApi()

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

var token = token_example; // {String} token

var licenseNumber = licenseNumber_example; // {String} شماره پروانه

var op = op_example; // {String} Standard همیشه


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

namespace Example
{
    public class rootGetExample
    {
        public void main()
        {
            
            var apiInstance = new StandardApi();
            var apiecoKey = apiecoKey_example;  // String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
            var token = token_example;  // String | token
            var licenseNumber = licenseNumber_example;  // String | شماره پروانه
            var op = op_example;  // String | Standard همیشه (default to Standard)

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

$api_instance = new Swagger\Client\Api\StandardApi();
$apiecoKey = apiecoKey_example; // String | apikey for use API
$token = token_example; // String | token
$licenseNumber = licenseNumber_example; // String | شماره پروانه
$op = op_example; // String | Standard همیشه

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

my $api_instance = WWW::SwaggerClient::StandardApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $token = token_example; # String | token
my $licenseNumber = licenseNumber_example; # String | شماره پروانه
my $op = op_example; # String | Standard همیشه

eval { 
    my $result = $api_instance->rootGet(apiecoKey => $apiecoKey, token => $token, licenseNumber => $licenseNumber, op => $op);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling StandardApi->rootGet: $@\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.StandardApi()
apiecoKey = apiecoKey_example # String | apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
token = token_example # String | token
licenseNumber = licenseNumber_example # String | شماره پروانه
op = op_example # String | Standard همیشه (default to Standard)

try: 
    api_response = api_instance.root_get(apiecoKey, token, licenseNumber, op)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling StandardApi->rootGet: %s\n" % e)

Parameters

Header parameters
Name Description
apieco_key*
String
apikey for use API
Required
Query parameters
Name Description
token*
String
token
Required
LicenseNumber*
String
شماره پروانه
Required
op*
String
Standard همیشه
Required

Responses

Status: 200 - 200 response


rootPost

ارسال ورودی به تعداد دلخواه به صورت آرایه


/

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/searchline/"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.StandardApi;

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

public class StandardApiExample {

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

public class StandardApiExample {

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

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

// ارسال ورودی به تعداد دلخواه به صورت آرایه
[apiInstance rootPostWith:apiecoKey
    body:body
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var _ = require('__');

var api = new _.StandardApi()

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

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

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

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

            try
            {
                // ارسال ورودی به تعداد دلخواه به صورت آرایه
                inline_response_200 result = apiInstance.rootPost(apiecoKey, body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling StandardApi.rootPost: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

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

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

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

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

try: 
    # ارسال ورودی به تعداد دلخواه به صورت آرایه
    api_response = api_instance.root_post(apiecoKey, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling StandardApi->rootPost: %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