واکاویک

BatchClassifications

classifierBatchClassificationPost


/classifier/batchClassification

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/zagma/classifier/batchClassification"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.BatchClassificationsApi;

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

public class BatchClassificationsApiExample {

    public static void main(String[] args) {
        
        BatchClassificationsApi apiInstance = new BatchClassificationsApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String authorization = authorization_example; // String | Bearer YOUR_API_TOKEN
        Body_2 body = ; // Body_2 | 
        try {
            inline_response_200_2 result = apiInstance.classifierBatchClassificationPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling BatchClassificationsApi#classifierBatchClassificationPost");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.BatchClassificationsApi;

public class BatchClassificationsApiExample {

    public static void main(String[] args) {
        BatchClassificationsApi apiInstance = new BatchClassificationsApi();
        String apiecoKey = apiecoKey_example; // String | apikey for use API
        String authorization = authorization_example; // String | Bearer YOUR_API_TOKEN
        Body_2 body = ; // Body_2 | 
        try {
            inline_response_200_2 result = apiInstance.classifierBatchClassificationPost(apiecoKey, authorization, body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling BatchClassificationsApi#classifierBatchClassificationPost");
            e.printStackTrace();
        }
    }
}
String *apiecoKey = apiecoKey_example; // apikey for use API (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
String *authorization = authorization_example; // Bearer YOUR_API_TOKEN (default to WsLdHK46I5Wfr5xgI0ynjjyiw9Fyhydu)
Body_2 *body = ; //  (optional)

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

[apiInstance classifierBatchClassificationPostWith:apiecoKey
    authorization:authorization
    body:body
              completionHandler: ^(inline_response_200_2 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var SwaggerJsClient = require('swagger-js-client');

var api = new SwaggerJsClient.BatchClassificationsApi()

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

var authorization = authorization_example; // {String} Bearer YOUR_API_TOKEN

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

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

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

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

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

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

my $api_instance = WWW::SwaggerClient::BatchClassificationsApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $authorization = authorization_example; # String | Bearer YOUR_API_TOKEN
my $body = WWW::SwaggerClient::Object::Body_2->new(); # Body_2 | 

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

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

Parameters

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

Responses

Status: 200 - 200 response


Classify

classifierClassifyPost


/classifier/classify

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/zagma/classifier/classify"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ClassifyApi;

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

public class ClassifyApiExample {

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

public class ClassifyApiExample {

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

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

[apiInstance classifierClassifyPostWith:apiecoKey
    authorization:authorization
    body:body
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var SwaggerJsClient = require('swagger-js-client');

var api = new SwaggerJsClient.ClassifyApi()

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

var authorization = authorization_example; // {String} Bearer YOUR_API_TOKEN

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

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

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

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

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

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

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

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

Parameters

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

Responses

Status: 200 - 200 response


GetClassifications

classifierGetClassificationsPost


/classifier/getClassifications

Usage and SDK Samples

curl -X POST "https://api.apieco.ir/zagma/classifier/getClassifications"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.GetClassificationsApi;

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

public class GetClassificationsApiExample {

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

public class GetClassificationsApiExample {

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

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

[apiInstance classifierGetClassificationsPostWith:apiecoKey
    authorization:authorization
    body:body
              completionHandler: ^(inline_response_200_1 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var SwaggerJsClient = require('swagger-js-client');

var api = new SwaggerJsClient.GetClassificationsApi()

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

var authorization = authorization_example; // {String} Bearer YOUR_API_TOKEN

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

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

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

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

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

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

my $api_instance = WWW::SwaggerClient::GetClassificationsApi->new();
my $apiecoKey = apiecoKey_example; # String | apikey for use API
my $authorization = authorization_example; # String | Bearer YOUR_API_TOKEN
my $body = WWW::SwaggerClient::Object::Body_1->new(); # Body_1 | 

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

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

Parameters

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

Responses

Status: 200 - 200 response